File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 2828
2929 # Install dependencies with pnpm
3030 - name : Install dependencies
31- run : pnpm install
31+ run : pnpm install --no-frozen-lockfile
3232
3333 # 👇 Adds Chromatic as a step in the workflow
3434 - uses : chromaui/action@v1
Original file line number Diff line number Diff line change @@ -22,10 +22,12 @@ jobs:
2222 node-version : 23.x # Specify the Node.js version you use
2323 registry-url : https://npm.pkg.github.com
2424
25+ - name : Install pnpm
26+ run : npm install -g pnpm
27+
2528 # Install dependencies with pnpm
26- - uses : pnpm/action-setup@v4
27- with :
28- run_install : true
29+ - name : Install dependencies
30+ run : pnpm install --no-frozen-lockfile
2931
3032 # Publish to GitHub Package Registry (prepublish script will run automatically)
3133 - name : Publish to GitHub Package Registry
Original file line number Diff line number Diff line change 2828 node-version : " 23.x"
2929
3030 # Install dependencies with pnpm
31- - uses : pnpm/action-setup@v4
31+ - name : Install pnpm
32+ run : npm install -g pnpm
3233
3334 # 👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
3435
You can’t perform that action at this time.
0 commit comments