From a8db605ae72fbafc4f75035945af0aa510984772 Mon Sep 17 00:00:00 2001 From: Joel Sahleen Date: Sun, 19 Jul 2026 17:28:08 -0600 Subject: [PATCH 1/2] chore: add .nvmrc file for Node.js version management - Introduced a new .nvmrc file specifying Node.js version v24.18.0 for consistent development environments. --- .nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..5bcf9c6 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v24.18.0 From 3db48455b410de5dded094236a25173edde02fa8 Mon Sep 17 00:00:00 2001 From: Joel Sahleen Date: Sun, 19 Jul 2026 17:31:03 -0600 Subject: [PATCH 2/2] chore: update CI workflow to use .nvmrc for Node.js version - Modified the CI configuration to reference the Node.js version specified in the .nvmrc file instead of hardcoding the version number. --- .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 67ae094..1363b98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version-file: .nvmrc cache: npm - run: npm ci - run: npx tsc --noEmit