From cadfb11d5714bfbc6dbd3079b8e2d9f5a3a1dc04 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers <359867+desrosj@users.noreply.github.com> Date: Sat, 31 Jan 2026 18:23:11 +0100 Subject: [PATCH] Test Node.js 24 instead of 21 in test workflow. Odd-numbered Node.js releases are only supported for 6 months. Even-numbered ones eventually enter LTS status. WordPress Core currently used version 20.x, but there is work underway to upgrade to 24.x. This adds 24.x to the test matrix to ensure that the package works while that work takes place. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index becb48c..4e8ddf1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,8 +18,8 @@ jobs: strategy: matrix: node-version: - - 20 - - 21 + - '20' + - '24' steps: - name: Checkout repository