File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 28
28
29
29
# Install dependencies with pnpm
30
30
- name : Install dependencies
31
- run : pnpm install
31
+ run : pnpm install --no-frozen-lockfile
32
32
33
33
# 👇 Adds Chromatic as a step in the workflow
34
34
- uses : chromaui/action@v1
Original file line number Diff line number Diff line change @@ -22,10 +22,12 @@ jobs:
22
22
node-version : 23.x # Specify the Node.js version you use
23
23
registry-url : https://npm.pkg.github.com
24
24
25
+ - name : Install pnpm
26
+ run : npm install -g pnpm
27
+
25
28
# 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
29
31
30
32
# Publish to GitHub Package Registry (prepublish script will run automatically)
31
33
- name : Publish to GitHub Package Registry
Original file line number Diff line number Diff line change 28
28
node-version : " 23.x"
29
29
30
30
# Install dependencies with pnpm
31
- - uses : pnpm/action-setup@v4
31
+ - name : Install pnpm
32
+ run : npm install -g pnpm
32
33
33
34
# 👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
34
35
You can’t perform that action at this time.
0 commit comments