From 8c14c68ebdf3c3acb8954133e287ac6c26335c02 Mon Sep 17 00:00:00 2001 From: Vedant K Date: Thu, 3 Aug 2023 18:09:43 +0530 Subject: [PATCH] ci: use correct `pnpm` version --- .github/workflows/ci.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ebd87f5b..c9f5daaa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,8 +23,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2 with: - standalone: true - version: latest + version: 8 - name: Check for lint/formatting errors run: | pnpm install @@ -46,8 +45,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2 with: - standalone: true - version: latest + version: 7 - name: Run library tests run: | pnpm install @@ -69,8 +67,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2 with: - standalone: true - version: latest + version: 7 - name: Run import and external store usage tests run: | pnpm install @@ -91,8 +88,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v2 with: - standalone: true - version: latest + version: 8 - name: Install dependencies run: pnpm install - name: Publish package to NPM