From aa3634d1ca2f7058038499faabffd3f1df3af01b Mon Sep 17 00:00:00 2001 From: Alex Dobin Date: Tue, 17 Mar 2026 23:06:48 -0700 Subject: [PATCH] ci: use .node-version file for CI node setup Replace hardcoded node-version with node-version-file to keep CI in sync with the project's .node-version. --- .github/workflows/build_deploy_gh_pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_deploy_gh_pages.yml b/.github/workflows/build_deploy_gh_pages.yml index fe48563f..4f38ed99 100644 --- a/.github/workflows/build_deploy_gh_pages.yml +++ b/.github/workflows/build_deploy_gh_pages.yml @@ -42,7 +42,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v4 with: - node-version: "20.11.x" + node-version-file: ".node-version" cache: "npm" - name: Install and Build 🔧