mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-02 08:20:22 +01:00
31 lines
645 B
YAML
31 lines
645 B
YAML
dist: xenial
|
|
language: node_js
|
|
node_js:
|
|
- '12'
|
|
|
|
# Deploying uses awscli and it uses Python.
|
|
# Xenial on Travis comes with Python 2 & 3 installed but 2 is default.
|
|
# Ensure pip3 is installed and upgraded.
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install python3-pip
|
|
- sudo -H pip3 install --upgrade pip
|
|
|
|
script:
|
|
# will run `npm ci` automatically here
|
|
- npm test
|
|
- 'if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then npm run build; fi'
|
|
|
|
after_success:
|
|
- pip3 install --user awscli
|
|
- export PATH=$PATH:$HOME/.local/bin
|
|
- npm run deploy
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
cache:
|
|
npm: true
|
|
directories:
|
|
- public
|