language: node_js
node_js:
  - '8'
  - '10'
  - '11'
script:
  - yarn run eslint
  - yarn run check-fmt
  - yarn run test
  - yarn run codecov
after_success:
  - bash <(curl -s https://codecov.io/bash)
