Skip to content

Commit c16fb76

Browse files
authored
ci(Travis/Appveyor): Update Node versions in CI matrix (#3543)
* ci(.travis.yml,appveyor.yml): Update Node versions in CI matrix Make Node-11 the new default and drop Node-9 from matrix.
1 parent 1ded82f commit c16fb76

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ stages:
1111

1212
# defaults
1313
language: node_js
14-
node_js: '10'
14+
node_js: '11'
1515
addons:
1616
apt:
1717
packages:
@@ -40,7 +40,7 @@ jobs:
4040

4141
- &node
4242
script: npm start test.node
43-
node_js: '9'
43+
node_js: '10'
4444

4545
- <<: *node
4646
node_js: '8'
@@ -75,7 +75,7 @@ jobs:
7575
- node_modules # npm install, unlike npm ci, doesn't wipe node_modules
7676

7777
- <<: *smoke
78-
node_js: '9'
78+
node_js: '10'
7979

8080
- <<: *smoke
8181
node_js: '8'

appveyor.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ shallow_clone: true
1212
clone_depth: 1
1313
environment:
1414
matrix:
15+
- nodejs_version: '11'
1516
- nodejs_version: '10'
16-
- nodejs_version: '9'
1717
- nodejs_version: '8'
1818
- nodejs_version: '6'
1919
matrix:
@@ -69,4 +69,3 @@ notifications:
6969
on_build_success: false
7070
on_build_failure: false
7171
on_build_status_changed: false
72-

0 commit comments

Comments
 (0)