.travis.yml 365 B

12345678910111213141516171819202122232425262728
  1. sudo: false
  2. language: node_js
  3. node_js:
  4. - "8.5.0"
  5. addons:
  6. chrome: stable
  7. git:
  8. depth: 1
  9. before_install:
  10. - export CHROME_BIN=chromium-browser
  11. - export DISPLAY=:99.0
  12. - sh -e /etc/init.d/xvfb start
  13. - npm install -g npm@~5.3.0
  14. install:
  15. - npm install
  16. script:
  17. - npm run test
  18. - npm run test-coverage
  19. after_success:
  20. - ./node_modules/.bin/codecov