From 691aea9f62cf1e548f5ecf1127b0a4bde140f20c Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Sun, 5 Nov 2017 17:32:04 -0800 Subject: [PATCH] Only test against supported Node versions Electron Packager only supports Node versions which are supported the Node.js team, when testing via CI See: https://github.com/nodejs/Release --- .travis.yml | 3 +-- test/ci/appveyor.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 384ca044..30b91398 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,9 @@ osx_image: xcode8 language: node_js node_js: - '4' -- '5' - '6' -- '7' - '8' +- '9' cache: - apt: true - directories: diff --git a/test/ci/appveyor.yml b/test/ci/appveyor.yml index 6b99505a..35626f73 100644 --- a/test/ci/appveyor.yml +++ b/test/ci/appveyor.yml @@ -4,10 +4,9 @@ platform: environment: matrix: - nodejs_version: "4" - - nodejs_version: "5" - nodejs_version: "6" - - nodejs_version: "7" - nodejs_version: "8" + - nodejs_version: "9" cache: - '%APPDATA%\npm-cache' - '%USERPROFILE%\.electron'