Skip to content

Commit a18e344

Browse files
committed
ci: manually install pnpm via npm for renovate (#2648)
Manually install pnpm via npm for the renovate environment as the pnpm install action does not allow the install when anothe package is defined as the packageManager in the root package.json PR Close #2648
1 parent b1d18ce commit a18e344

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ng-renovate.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ jobs:
2525
runs-on: ubuntu-24.04
2626
steps:
2727
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28-
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
29-
with:
30-
version: 9.15.4
28+
- run: npm install --global [email protected]
29+
shell: bash
30+
31+
# TODO: Use pnpm/action-setup for pnpm install once pnpm is the packageManager for this repo
3132
- run: yarn --cwd .github/ng-renovate install --immutable
3233
shell: bash
3334

0 commit comments

Comments
 (0)