Skip to content

Commit

Permalink
Replace npm with pnpm in deploy-gh-pages.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
80avin authored Apr 3, 2024
1 parent 3608232 commit 08ed7f3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,18 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- 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 ci
- name: Build
run: npm run build
run: pnpm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
Expand Down

0 comments on commit 08ed7f3

Please sign in to comment.