We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa2b91 commit e9a8d66Copy full SHA for e9a8d66
1 file changed
.github/workflows/build-storybook-demo.yml
@@ -18,17 +18,13 @@ jobs:
18
node-version: 24
19
cache: 'pnpm'
20
21
+ # FIX for Node 24
22
- name: Disable Corepack
23
run: corepack disable
24
- - name: Setup pnpm
25
- uses: pnpm/action-setup@v4
26
- with:
27
- version: latest
28
- run_install: false
29
-
30
- - name: Activate pnpm
31
- run: corepack prepare pnpm@latest --activate
+ # Install pnpm manually (stable)
+ - name: Install pnpm
+ run: npm install -g pnpm@latest
32
33
- name: Install and Build Storybook
34
run: |
0 commit comments