mirror of
https://github.com/oceanprotocol/datascience.git
synced 2022-09-23 03:31:37 +02:00
27 lines
402 B
YAML
27 lines
402 B
YAML
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
|