Skip to content

Commit

Permalink
fix: update examples site action to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
becomevocal committed Jul 14, 2024
1 parent e0e96ff commit 9c30225
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy-examples-site-to-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v3
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache: 'pnpm'
- name: Install dependencies
run: npm ci
run: pnpm install
- name: Build examples site
run: npm run build-site
- name: Setup Pages
Expand Down

0 comments on commit 9c30225

Please sign in to comment.