Skip to content

Commit

Permalink
update CI workflow to use only node version 20
Browse files Browse the repository at this point in the history
Node version 20 is the version listed in the tool-versions, and several
dependencies require 20 as the minimum version.
  • Loading branch information
mint-thompson committed Oct 29, 2024
1 parent 739763c commit 605b313
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
- run: npm install
- run: npm run lint
- run: npm run prettier
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18, 20]
node-version: [20]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 605b313

Please sign in to comment.