language: node_js
node_js:
  - '10'
  - '12'
  - 'node'

install:
  - npm ci

script:
  - npm run lint
  - npm run test

after_success: 
- npm run coverage
