From 1bc2cd7d84f90c63f5e20a7235f683d320a07b40 Mon Sep 17 00:00:00 2001 From: plx Date: Sun, 26 Apr 2026 09:15:14 -0500 Subject: [PATCH 1/2] Pin .nvmrc to 24.0.0 for reproducible local environments Major-only `24` resolves to whatever nvm considers the latest 24.x at install time, which can drift across machines. Pin to the exact floor declared in `engines.node` so contributors land on a deterministic version. Co-Authored-By: Claude Opus 4.7 --- .nvmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nvmrc b/.nvmrc index a45fd52..51105aa 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -24 +24.0.0 From 5eec3c3e2a55d40acf144afbcedf8e04dfcb5200 Mon Sep 17 00:00:00 2001 From: plx Date: Mon, 27 Apr 2026 18:59:54 -0500 Subject: [PATCH 2/2] Bump .nvmrc to 24.15.0 and align CI via node-version-file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes the local↔CI reproducibility gap raised in PR #45 review: build.yml now reads .nvmrc directly via node-version-file, and the pin moves from the year-old 24.0.0 to the current Node 24 Active LTS (24.15.0) so both environments share a single source of truth. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/build.yml | 2 +- .nvmrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e602d2..34e3682 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '>=24.0.0' + node-version-file: '.nvmrc' cache: 'npm' - name: Setup Rust diff --git a/.nvmrc b/.nvmrc index 51105aa..5bf4400 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -24.0.0 +24.15.0