Skip to content

Commit 1363b0e

Browse files
committed
updated pnpm install
1 parent f0b65fd commit 1363b0e

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/chromatic.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
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

.github/workflows/package.yml

+5-3
Original file line numberDiff line numberDiff 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

.github/workflows/website.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
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
- uses: bitovi/[email protected]

0 commit comments

Comments
 (0)