From 88a59720f1f1caab19cceef674d01e527d050008 Mon Sep 17 00:00:00 2001 From: Liana <32243840+liana-p@users.noreply.github.com> Date: Tue, 23 Jan 2024 16:39:57 +0000 Subject: [PATCH] fix: specific version of pnpm install Getting this error on pnpm install with node 20... https://github.com/pnpm/pnpm/issues/6424 --- .github/workflows/ide.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ide.yml b/.github/workflows/ide.yml index c2174b84..29df7162 100644 --- a/.github/workflows/ide.yml +++ b/.github/workflows/ide.yml @@ -1,4 +1,4 @@ -name: 'publish' +name: 'ide-release' # This will trigger the action on each push to the `release` branch. on: @@ -35,6 +35,8 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v2.4.0 + with: + version: latest - name: install frontend dependencies run: pnpm install # change this to npm or pnpm depending on which one you use