Files
cellxgene/.travis.yml
Colin Megill f6d7cc3e23 initial commit
2017-08-23 16:28:01 -07:00

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"