We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a8d66 commit 39f6488Copy full SHA for 39f6488
1 file changed
.github/workflows/build-storybook-demo.yml
@@ -18,13 +18,11 @@ jobs:
18
node-version: 24
19
cache: 'pnpm'
20
21
- # FIX for Node 24
22
- - name: Disable Corepack
23
- run: corepack disable
24
-
25
- # Install pnpm manually (stable)
+ # Install pnpm manually & force-add to PATH
26
- name: Install pnpm
27
- run: npm install -g pnpm@latest
+ run: |
+ npm install -g pnpm@9
+ echo "$(npm root -g)/pnpm/bin" >> $GITHUB_PATH
28
29
- name: Install and Build Storybook
30
run: |
0 commit comments