From e0793612427cedb6c042344d6cd24ca4d5e5ee88 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Mon, 26 Jun 2023 16:16:56 -0700 Subject: [PATCH] chore: update CI to test against node v20 No change to logic. This updates GitHub actions CI to test on node v19 and v20. --- .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 c95bd22..1634ba1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,6 +23,8 @@ jobs: - 16 - 17 - 18 + - 19 + - 20 os: - ubuntu-latest - macos-latest diff --git a/scripts/check-node-support.js b/scripts/check-node-support.js index 28e05b4..296e889 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 = 18; +var MAX_NODE_VERSION = 20; function checkReadme(minNodeVersion) { var start = '';