language: node_js
node_js:
  - '4.2'
cache:
  directories:
    - node_modules
notifications:
  email: false
before_install:
  - npm i -g npm@^2.0.0
  - npm install -g grunt-cli
install: npm install
before_script:
  - npm run build
script:
  - npm run test
  - npm run e2e
after_success:
  - npm run report-coverage
