Skip to content

Commit 18c8e88

Browse files
fiskernovemberborn
authored andcommitted
Update .travis.yml; don't test Node.js 6 & 8
1 parent 0dbb8db commit 18c8e88

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.travis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
language: node_js
22
node_js:
3-
- 12
4-
- 10
5-
- 8
6-
- 6
3+
- '13'
4+
- '12'
5+
- '10'
76
matrix:
87
include:
9-
- node_js: 12
8+
- node_js: '12'
109
env: INTEGRATION=true
1110
script:
12-
- if [ $INTEGRATION == true ]; then npm run integration; fi
11+
- if [[ $INTEGRATION == true ]]; then npm run integration; fi
1312
before_install: npm install --global npm
14-
after_success: npx codecov --file=./coverage/lcov.info
13+
after_success:
14+
- if [[ $INTEGRATION != true ]]; then npx codecov --file=./coverage/lcov.info; fi

0 commit comments

Comments
 (0)