Skip to content

Commit

Permalink
ci: move setup node step before setting up pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Apr 15, 2024
1 parent ae471b3 commit c74603c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Expand Up @@ -22,17 +22,17 @@ jobs:
- name: Setup environment
run: mv .env.example .env

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: true

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm

- name: Run tests
run: pnpm test

0 comments on commit c74603c

Please sign in to comment.