From cc4d2c1ef74ffed508fe84e3b06bda23eff86422 Mon Sep 17 00:00:00 2001 From: Kawika Bader Date: Thu, 16 Oct 2025 13:18:47 -0700 Subject: [PATCH] chore(ci): add pnpm setup to GitHub Actions and update Node.js config formatting --- .github/workflows/release.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 80da4f8b..f0036890 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,11 +15,14 @@ jobs: - name: Checkout Repo uses: actions/checkout@v5 + - name: Setup pnpm + uses: pnpm/action-setup@v4 + - name: Setup Node uses: actions/setup-node@v5 with: - node-version-file: '.nvmrc' - cache: 'pnpm' + node-version-file: ".nvmrc" + cache: "pnpm" - name: Install Dependencies run: pnpm install --prefer-offline