From c78e7c41d668f7d37e08fb7fb4e092301ec9a7b7 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 21 May 2019 16:22:38 +0200 Subject: [PATCH 1/2] 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). --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 710e11da9..91fecd79e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ node_js: - "8" - "10" - "11" + - "12" before_install: - travis_retry npm install @@ -16,7 +17,7 @@ script: matrix: allow_failures: - - node_js: "11" + - node_js: "12" notifications: email: From b8cebf8f411cdc2270e8b7f4f2c367f3079c5f61 Mon Sep 17 00:00:00 2001 From: DABH Date: Sat, 29 Jun 2019 14:09:43 -0700 Subject: [PATCH 2/2] add n12 on appveyor, remove n6 from travis+appveyor --- .travis.yml | 1 - appveyor.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 91fecd79e..9363d161d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ sudo: false language: node_js node_js: - - "6" - "8" - "10" - "11" diff --git a/appveyor.yml b/appveyor.yml index 36c0c6577..af8f2963c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,9 +2,9 @@ version: "{build}" environment: matrix: - - nodejs_version: 6 - nodejs_version: 8 - nodejs_version: 10 + - nodejs_version: 12 matrix: fast_finish: true