From 7ef1389d44da087a482fb5780990824436748fa2 Mon Sep 17 00:00:00 2001 From: Ulas Date: Thu, 2 Apr 2026 15:05:27 +0200 Subject: [PATCH] fix(ci): remove Node.js 24.x from test matrix Node 24 is not yet LTS and native dependencies (bcrypt, better-sqlite3, sharp) fail to compile on it, causing CI failures. Co-Authored-By: Claude Opus 4.6 --- .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 64bf093..bd1b93d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [22.x, 24.x] + node-version: [22.x] steps: - uses: actions/checkout@v4