From ee1ef41bd3c28fde436c86c31e6959949a3e0f6a Mon Sep 17 00:00:00 2001 From: Phillip Barta Date: Thu, 8 May 2025 04:08:25 +0200 Subject: [PATCH] ci: add node.js 24 to test matrix (#6504) --- .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 ab7dfd0b..7022c9da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - node-version: [18, 19, 20, 21, 22, 23] + node-version: [18, 19, 20, 21, 22, 23, 24] # Node.js release schedule: https://nodejs.org/en/about/releases/ name: Node.js ${{ matrix.node-version }} - ${{matrix.os}}