sudo: false
language: node_js
node_js:
- '8'
cache:
  directories:
    - node_modules
notifications:
  email: false
before_install:
- npm update
install:
- npm install
script:
  - npm run test
  - npm run build
