From d1e00743935ef8884ea1a9b51036603db61c67ac Mon Sep 17 00:00:00 2001 From: Arseniy Klempner Date: Mon, 1 Dec 2025 15:42:35 -0800 Subject: [PATCH] fix: include pnpm in ci --- .github/workflows/ci.yml | 5 +++++ .github/workflows/pre-release.yml | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 082d676c54..c3d6447527 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,6 +113,11 @@ jobs: node-version: ${{ env.NODE_JS }} registry-url: "https://registry.npmjs.org" + - uses: pnpm/action-setup@v4 + if: ${{ steps.release.outputs.releases_created }} + with: + version: 9 + - run: npm install if: ${{ steps.release.outputs.releases_created }} diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 53db4b85b3..f08eec2463 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -24,6 +24,10 @@ jobs: node-version: ${{ env.NODE_JS }} registry-url: "https://registry.npmjs.org" + - uses: pnpm/action-setup@v4 + with: + version: 9 + - run: npm install - run: npm run build