From 3270069324b845bdb3e7b4f7e4a06b3bee521da5 Mon Sep 17 00:00:00 2001 From: "T. Narantuya" Date: Fri, 29 Aug 2025 16:52:02 +0900 Subject: [PATCH] Refactor GitHub Actions workflow to remove duplicate pnpm setup step for cleaner configuration --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6ca529d7..d66fbcf0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,17 +21,17 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 10.15.0 + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 22 cache: 'pnpm' - - name: Setup pnpm - uses: pnpm/action-setup@v4 - with: - version: 10.15.0 - - name: Install dependencies run: pnpm install --frozen-lockfile