Skip to content

Commit

Permalink
ci: fix node version
Browse files Browse the repository at this point in the history
  • Loading branch information
kirklin committed Apr 17, 2024
1 parent 9fb7152 commit ace4a70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: lts/*
cache: pnpm

- name: Setup
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: lts/*
cache: pnpm

- name: Setup
Expand All @@ -61,7 +61,7 @@ jobs:

strategy:
matrix:
node: [16.x, 18.x, 20.x]
node: [lts/*]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false

Expand Down

0 comments on commit ace4a70

Please sign in to comment.