Skip to content

Commit

Permalink
switch workflow to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
maht0rz committed Feb 5, 2025
1 parent 5476102 commit a42fe79
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,21 @@ jobs:
environment: netlify
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: pnpm/action-setup@v4
with:
node-version: 20.8.0
- name: Build
version: 10

- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: |
pnpm i
- name: Build
run: |
pnpm run build
- name: Deploy to Netlify
Expand Down

0 comments on commit a42fe79

Please sign in to comment.