mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-01 15:55:34 +01:00
22 lines
361 B
YAML
22 lines
361 B
YAML
language: node_js
|
|
node_js: node
|
|
|
|
# will run `npm install` automatically here
|
|
|
|
script:
|
|
- npm test
|
|
- 'if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then npm run build; fi'
|
|
|
|
after_success:
|
|
- pip install --user awscli
|
|
- export PATH=$PATH:$HOME/.local/bin
|
|
- npm run deploy
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- public
|