From 384a09113c1ab0e46953c79290a0c193308f1fb7 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Wed, 23 Apr 2025 23:03:58 +0200 Subject: [PATCH] Run CI tests in Node.js version 24 Node.js version 24 was just released, see https://github.com/nodejs/release#release-schedule, hence we should run tests in that version in order to help catch any possible issues as soon as possible. Also, since version 23 will reach EOL (end-of-life) in less than a month we stop running tests in that version. --- .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 1f3cadbd4..765608c99 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20, 22, 23] + node-version: [20, 22, 24] steps: - name: Checkout repository