datascience/.travis.yml

27 lines
402 B
YAML
Raw Normal View History

2018-12-04 14:38:27 +01:00
language: node_js
node_js: node
# will run `npm install` automatically here
script:
- npm test
- npm run build
before_deploy:
- pip install --user awscli
- export PATH=$PATH:$HOME/.local/bin
deploy:
skip_cleanup: true
provider: script
script: npm run deploy
on:
branch: master
notifications:
email: false
cache:
directories:
- node_modules