Skip to content

Commit

Permalink
fix: reorder GitHub Actions steps to install pnpm before node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen1 committed Jan 26, 2025
1 parent 5428f3c commit 21eccc4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
with:
lfs: true

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9

- name: Install dependencies
run: pnpm install

Expand Down

0 comments on commit 21eccc4

Please sign in to comment.