Skip to content

Commit

Permalink
🐛 Fix(Github Actions): fix wrong order of steps (pnpm now is before n…
Browse files Browse the repository at this point in the history
…ode)
  • Loading branch information
INeedJobToStartWork committed Jan 25, 2024
1 parent 60d145c commit 46e8fdb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Setup pnpm
uses: pnpm/[email protected]
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
cache: "pnpm"

- name: Setup pnpm
uses: pnpm/[email protected]

- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Format Files
Expand Down

0 comments on commit 46e8fdb

Please sign in to comment.