Skip to content

Commit

Permalink
chore(actions): fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcrea committed Nov 21, 2024
1 parent bc75a3f commit 91602c8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
name: Test on node@v${{ matrix.node }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup pnpm 🔧
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
version: 9
- name: Setup node 🔧
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
Expand All @@ -35,7 +35,7 @@ jobs:
run: pnpm run prettycheck
- name: TypeScript 🔍
run: pnpm run typecheck
- name: Spec 🔍
- name: Vitest 🔍
run: pnpm run spec
build:
runs-on: ubuntu-latest
Expand All @@ -45,13 +45,13 @@ jobs:
name: Build on node@v${{ matrix.node }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup pnpm 🔧
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
version: 9
- name: Setup node 🔧
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
Expand Down

0 comments on commit 91602c8

Please sign in to comment.