From e01d2534e7e4e8381b92eac1bdd2397fc013dfc2 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Sat, 15 Jan 2022 13:00:50 -0800 Subject: [PATCH] chore(ci): run tests up to node v16 No change to logic. This adds node v15 and v16 to the CI testing. --- .github/workflows/main.yml | 2 ++ scripts/check-node-support.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 41698fb..f28cbf8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,8 @@ jobs: - 12 - 13 - 14 + - 15 + - 16 os: - ubuntu-latest - macos-latest diff --git a/scripts/check-node-support.js b/scripts/check-node-support.js index 4e8702c..f24edaa 100755 --- a/scripts/check-node-support.js +++ b/scripts/check-node-support.js @@ -9,7 +9,7 @@ var shell = require('shelljs'); // This is the authoritative list of supported node versions. var MIN_NODE_VERSION = 6; -var MAX_NODE_VERSION = 14; +var MAX_NODE_VERSION = 16; function checkReadme(minNodeVersion) { var start = '';