From 9efb4aa4aa0affc0010eb9e060c166acdfce2e4c Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Tue, 5 May 2026 16:53:49 +0200 Subject: [PATCH] Run unit-tests in Node.js version 26 This was just released, see https://nodejs.org/en/blog/release/v26.0.0, hence it seems like a good idea to start running unit-tests in that version. Also, stop running the unit-tests in Node.js version 25 since it'll soon reach EOL anyway and testing in three separate Node.js versions ought to suffice. --- .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 25098313d..0a546a7d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [22, 24, 25] + node-version: [22, 24, 26] steps: - name: Checkout repository