Skip to content

Commit

Permalink
ci: run on newer node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Jul 6, 2024
1 parent 3ebc0cf commit 51dff8c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
fail-fast: false
matrix:
node:
- '12'
- '14'
- '16'
- '18.12'
- '20'
- '22'
platform:
- ubuntu-latest
- windows-latest
Expand All @@ -28,8 +28,11 @@ jobs:
node-version: ${{ matrix.node }}
- name: checkout main
run: git branch -f main origin/main
- name: install pnpm
run: npm install --global @pnpm/exe@6
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest-9
standalone: true
- name: pnpm install
run: pnpm install
- name: run tests
Expand Down

0 comments on commit 51dff8c

Please sign in to comment.