mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-02 08:20:22 +01:00
35 lines
789 B
YAML
35 lines
789 B
YAML
language: node_js
|
|
node_js: node
|
|
|
|
# will run `npm install` automatically here
|
|
|
|
dist: xenial
|
|
|
|
# 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:
|
|
- npm test
|
|
- 'if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then npm run build; fi'
|
|
|
|
# Try to ensure Python 3 and pip3 get used for deployment.
|
|
# Note that "alias" commands do not work in .travis.yml
|
|
after_success:
|
|
- pyenv global 3.6
|
|
- pip3 install --user awscli
|
|
- export PATH=$PATH:$HOME/.local/bin
|
|
- npm run deploy
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- public
|