From c80f27aac9419b7ae92e8b18fb77a25e02888e16 Mon Sep 17 00:00:00 2001 From: Kyle Jeong <77771518+Kylejeong2@users.noreply.github.com> Date: Tue, 26 Aug 2025 14:53:23 -0700 Subject: [PATCH] Revert "installing pnpm instead of relying on cache (#113)" This reverts commit f5dd09b8995e0ad0cc9f4bf2c36bad573c0a2941. --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b6b401..91f51c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,15 +16,16 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Setup pnpm - uses: pnpm/action-setup@v4 - with: - version: 10 - - name: Setup Node uses: actions/setup-node@v4 with: node-version: 20 + cache: 'pnpm' + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 10 - name: Install deps run: pnpm install --frozen-lockfile