From a3f81a50395a3287b45fc93ecad7c7c2f04f19c7 Mon Sep 17 00:00:00 2001 From: martascorreia Date: Thu, 9 Apr 2026 09:26:55 +0100 Subject: [PATCH 1/3] fix: removing npm install latest --- .github/workflows/release.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a9457ac05..1f1e59e3a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,9 +31,6 @@ jobs: with: node-version: 22 - - name: Upgrade npm to latest - run: npm i -g npm@latest - - name: Setup pnpm uses: pnpm/action-setup@v4 @@ -61,9 +58,6 @@ jobs: with: node-version: 22 - - name: Upgrade npm to latest - run: npm i -g npm@latest - - name: Setup pnpm uses: pnpm/action-setup@v4 From 0b5e63958664794d9f6305a37c4772a008b80f9c Mon Sep 17 00:00:00 2001 From: martascorreia Date: Thu, 9 Apr 2026 09:52:01 +0100 Subject: [PATCH 2/3] chore: changeset --- .changeset/fair-buttons-chew.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .changeset/fair-buttons-chew.md diff --git a/.changeset/fair-buttons-chew.md b/.changeset/fair-buttons-chew.md new file mode 100644 index 0000000000..a49ba48448 --- /dev/null +++ b/.changeset/fair-buttons-chew.md @@ -0,0 +1,2 @@ +--- +--- \ No newline at end of file From 14d5f57417a6b6eae2a15390cded049f432dc6e8 Mon Sep 17 00:00:00 2001 From: martascorreia Date: Thu, 9 Apr 2026 15:43:25 +0100 Subject: [PATCH 3/3] fix: forcing a npm and pnpm version --- .github/workflows/release.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f1e59e3a6..a721cf5955 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,8 +31,13 @@ jobs: with: node-version: 22 + - name: Setup npm + run: npm i -g npm@10.9.7 + - name: Setup pnpm uses: pnpm/action-setup@v4 + with: + version: 10.33.0 - name: Install dependencies run: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=true pnpm i @@ -58,8 +63,13 @@ jobs: with: node-version: 22 + - name: Setup npm + run: npm i -g npm@10.9.7 + - name: Setup pnpm uses: pnpm/action-setup@v4 + with: + version: 10.33.0 - name: Install dependencies run: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=true pnpm i