language: node_js
node_js:
  - "8"
addons:
  chrome: stable
install:
  - npm install
script:
  - npm run build && npm run test
after_success:
  - cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
  - rm -rf ./coverage
branches:
  only:
    - master
    - production
