Skip to content

Commit

Permalink
Update CI to remove Node 6 and support Node 12 (#1647)
Browse files Browse the repository at this point in the history
* Update .travis.yml to support Node.js 12

This adds Node.js 12 to the test matrix to make sure everything passes as expected.
Node.js 11 is in maintenance and won't receive significant changes anymore, so I updated that as well (no test failures should be accepted).

* add n12 on appveyor, remove n6 from travis+appveyor
  • Loading branch information
BridgeAR authored and DABH committed Jun 29, 2019
1 parent bc6a363 commit 05bed4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
sudo: false
language: node_js
node_js:
- "6"
- "8"
- "10"
- "11"
- "12"

before_install:
- travis_retry npm install
Expand All @@ -16,7 +16,7 @@ script:

matrix:
allow_failures:
- node_js: "11"
- node_js: "12"

notifications:
email:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ version: "{build}"

environment:
matrix:
- nodejs_version: 6
- nodejs_version: 8
- nodejs_version: 10
- nodejs_version: 12

matrix:
fast_finish: true
Expand Down

0 comments on commit 05bed4d

Please sign in to comment.