From b92f742a26c8f24e0b4411d011ec83b39facb07e Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sat, 13 Dec 2025 19:17:34 +0100 Subject: [PATCH] Run the CI tests in Node.js version 25 too Node.js version 25 is the current (non-LTS) release, see https://github.com/nodejs/release#release-schedule, so we should run the tests with that version too to help catch any possible issues sooner. --- .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 a0600b61f..e306ae5dd 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, 24] + node-version: [20, 22, 24, 25] steps: - name: Checkout repository