From d8a6e9f8149db7249b121d9fcfdae11959084ecc Mon Sep 17 00:00:00 2001 From: Nick Moreton Date: Thu, 25 Dec 2025 22:50:37 +0000 Subject: [PATCH] Update CI Node.js version to 24 to match .nvmrc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the inconsistency between the local development environment (.nvmrc specifies Node.js 24) and the CI environment (was using Node.js 20). Standardizing on version 24 ensures consistent behavior across all environments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .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 4c13890..1312906 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '24' cache: 'npm' - name: Install uv