We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.travis.yml
1 parent 0dbb8db commit 18c8e88Copy full SHA for 18c8e88
.travis.yml
@@ -1,14 +1,14 @@
1
language: node_js
2
node_js:
3
- - 12
4
- - 10
5
- - 8
6
- - 6
+ - '13'
+ - '12'
+ - '10'
7
matrix:
8
include:
9
- - node_js: 12
+ - node_js: '12'
10
env: INTEGRATION=true
11
script:
12
- - if [ $INTEGRATION == true ]; then npm run integration; fi
+ - if [[ $INTEGRATION == true ]]; then npm run integration; fi
13
before_install: npm install --global npm
14
-after_success: npx codecov --file=./coverage/lcov.info
+after_success:
+ - if [[ $INTEGRATION != true ]]; then npx codecov --file=./coverage/lcov.info; fi
0 commit comments