From 5db102773771fc1033539d1d447db6bc2a3bd2c3 Mon Sep 17 00:00:00 2001 From: Drew Hoover Date: Mon, 11 Mar 2024 12:12:33 -0400 Subject: [PATCH] use pnpm instead of npm (#29) --- .github/workflows/release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58bf3b4..aff7817 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,10 +26,15 @@ jobs: uses: actions/setup-node@v3 with: node-version-file: .nvmrc + - name: Install pnpm + uses: pnpm/action-setup@v3 + with: + version: 8 + run_install: false - name: Install dependencies - run: npm clean-install + run: pnpm i --frozen-lockfile - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies - run: npm audit signatures + run: pnpm audit signatures - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}