language: node_js
os:
 - linux
node_js:
  - "8"
  - "6"
branches:
  only:
    - develop
install:
  - npm install
test:
  - npm test
after_success:
  - npm run coverage

