From 5fe48ca848a3d08b2b70089d39266498fa876ab2 Mon Sep 17 00:00:00 2001 From: Aj Wazzan Date: Tue, 20 May 2025 02:14:16 -0700 Subject: [PATCH] chore: add .nvmrc file for Node version management; update CI workflows to remove version specifications for pnpm and Node --- .github/workflows/ci.yml | 4 ---- .github/workflows/main.yml | 4 ---- .nvmrc | 1 + 3 files changed, 1 insertion(+), 8 deletions(-) create mode 100644 .nvmrc diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1234a264c..a11c0453b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,13 +17,9 @@ jobs: - name: Setup pnpm 🌟 uses: pnpm/action-setup@v4 - with: - version: latest - name: Setup Node 📦 uses: actions/setup-node@v4 - with: - node-version: latest - name: Install dependencies 📦 run: pnpm install diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2cba011aa..4b52b405b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,13 +29,9 @@ jobs: - name: Setup pnpm 🌟 uses: pnpm/action-setup@v4 - with: - version: latest - name: Setup Node 📦 uses: actions/setup-node@v4 - with: - node-version: latest - name: Install dependencies 📦 run: pnpm install diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 000000000..92f279e3e --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v22 \ No newline at end of file