language: node_js

node_js:
  - node
  - 10.16.0

cache: npm

install:
  - npm install
  - npm install -g codecov

script:
  - npm run lint
  - npm run test
  - codecov

branches:
  only:
    - master
