Skip to content

Commit

Permalink
Try to fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronMoat committed Apr 21, 2024
1 parent 5121006 commit c22efed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
- name: Check out repo
uses: actions/checkout@v3

- name: Set up Node.js 18.x
- name: Set up Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: yarn install --frozen-lockfile
run: pnpm install --offline

- name: Test
run: yarn test
run: pnpm test

- name: Lint
run: yarn lint
run: pnpm lint

0 comments on commit c22efed

Please sign in to comment.