Skip to content

Commit

Permalink
ci(Travis/Appveyor): Update Node versions in CI matrix (#3543)
Browse files Browse the repository at this point in the history
* ci(.travis.yml,appveyor.yml): Update Node versions in CI matrix

Make Node-11 the new default and drop Node-9 from matrix.
  • Loading branch information
plroebuck committed Nov 2, 2018
1 parent 1ded82f commit c16fb76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ stages:

# defaults
language: node_js
node_js: '10'
node_js: '11'
addons:
apt:
packages:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:

- &node
script: npm start test.node
node_js: '9'
node_js: '10'

- <<: *node
node_js: '8'
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- node_modules # npm install, unlike npm ci, doesn't wipe node_modules

- <<: *smoke
node_js: '9'
node_js: '10'

- <<: *smoke
node_js: '8'
Expand Down
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ shallow_clone: true
clone_depth: 1
environment:
matrix:
- nodejs_version: '11'
- nodejs_version: '10'
- nodejs_version: '9'
- nodejs_version: '8'
- nodejs_version: '6'
matrix:
Expand Down Expand Up @@ -69,4 +69,3 @@ notifications:
on_build_success: false
on_build_failure: false
on_build_status_changed: false

0 comments on commit c16fb76

Please sign in to comment.