1 | language: node_js
|
2 | node_js:
|
3 | - "10"
|
4 | - "9"
|
5 | - "8"
|
6 | install: npm install
|
7 | jobs:
|
8 | include:
|
9 | - stage: test
|
10 | script: bash ./scripts/travis-test.sh
|
11 | - stage: deploy
|
12 | script: bash ./scripts/travis-deploy.sh
|
13 | cache:
|
14 | directories:
|
15 | - node_modules
|
16 | notifications:
|
17 | email: false
|