Skip to content

Commit

Permalink
updated pnpm install
Browse files Browse the repository at this point in the history
  • Loading branch information
Oba-One committed Nov 19, 2024
1 parent f0b65fd commit 1363b0e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

# Install dependencies with pnpm
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile

#👇 Adds Chromatic as a step in the workflow
- uses: chromaui/action@v1
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ jobs:
node-version: 23.x # Specify the Node.js version you use
registry-url: https://npm.pkg.github.com

- name: Install pnpm
run: npm install -g pnpm

# Install dependencies with pnpm
- uses: pnpm/action-setup@v4
with:
run_install: true
- name: Install dependencies
run: pnpm install --no-frozen-lockfile

# Publish to GitHub Package Registry (prepublish script will run automatically)
- name: Publish to GitHub Package Registry
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
node-version: "23.x"

# Install dependencies with pnpm
- uses: pnpm/action-setup@v4
- name: Install pnpm
run: npm install -g pnpm

#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
Expand Down

0 comments on commit 1363b0e

Please sign in to comment.