Skip to content

Commit

Permalink
try pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
veprogames committed Jun 26, 2024
1 parent 9d70516 commit ff2dc7c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy-vite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,19 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up pnpm
uses: pnpm/action-setup@v4
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 ff2dc7c

Please sign in to comment.