From b8b4b619ce83ce2ad98cf7e026f64b3109f61225 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 26 Oct 2025 19:38:16 -0500 Subject: [PATCH] ci: use pnpm version from packageManager field Remove explicit PNPM_VERSION environment variable and version specification from pnpm/action-setup@v4. The action now automatically reads the version from package.json's packageManager field, eliminating version duplication. --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdc5941..d5ad610 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,6 @@ permissions: env: NODE_VERSION: "20" - PNPM_VERSION: "9.0.0" jobs: # Code quality checks @@ -26,8 +25,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: ${{ env.PNPM_VERSION }} - name: Setup Node.js uses: actions/setup-node@v4 @@ -55,8 +52,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: ${{ env.PNPM_VERSION }} - name: Setup Node.js uses: actions/setup-node@v4 @@ -100,8 +95,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: ${{ env.PNPM_VERSION }} - name: Setup Node.js uses: actions/setup-node@v4 @@ -128,8 +121,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: ${{ env.PNPM_VERSION }} - name: Setup Node.js uses: actions/setup-node@v4