From 812914bd9464e41a32c26460994c72f7fcb1c2af Mon Sep 17 00:00:00 2001 From: solareon <769465+solareon@users.noreply.github.com> Date: Sat, 15 Jun 2024 15:28:52 +0200 Subject: [PATCH] fix(actions): install pnpm --- .github/workflows/release-action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-action.yml b/.github/workflows/release-action.yml index 7193cf3..e90112d 100644 --- a/.github/workflows/release-action.yml +++ b/.github/workflows/release-action.yml @@ -19,8 +19,13 @@ jobs: - name: Install ZIP run: sudo apt install zip + - name: Install pnpm + uses: pnpm/action-setup@v4.0.0 + with: + version: 9 + - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: 20.x cache: "pnpm"