123456789101112131415161718192021222324 |
- language: node_js
- node_js:
- - 'node'
- - 'lts/*'
- script:
- - npm test -- --maxWorkers=4
- - npm run build
- before_install:
- - export CHROME_BIN=chromium-browser
- - export DISPLAY=:99.0
- - sh -e /etc/init.d/xvfb start
- notifications:
- email:
- on_failure: change
- after_success: 'npm run coveralls'
- cache:
- directories:
- - node_modules
|