From 6604adb5fff76b541f8fab971d17ee4ac4a044ab Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 20 Oct 2024 13:50:48 +0200 Subject: [PATCH] Run CI tests in Node.js version 23 Node.js version 23 was recently released, see https://github.com/nodejs/release#release-schedule, hence it cannot hurt to start testing in that environment. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42e6e57cbabcb..b60e0a31b1d8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18, lts/*, 22] + node-version: [18, lts/*, 22, 23] steps: - name: Checkout repository