mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 12:47:56 +08:00
30 lines
466 B
YAML
30 lines
466 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- 4
|
|
- 5
|
|
- 6
|
|
|
|
# Use container-based Travis infrastructure.
|
|
sudo: false
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^greenkeeper-.*$/
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|
|
|
|
before_install:
|
|
- npm install -g npm@3
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
|
|
script:
|
|
- npm run lint
|
|
- npm run test
|
|
- cat coverage/lcov.info | node_modules/.bin/coveralls || echo "Coveralls upload failed"
|