Skip to content

Commit

Permalink
ci(build): remove the .x from node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dancrumb committed May 25, 2024
1 parent f93593a commit 5c5fff9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js 20.x
- name: Use Node.js 20
uses: actions/[email protected]
with:
node-version: 20.x
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run lint
test:
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [18, 20, 21, 22, 23, 24]
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
Expand Down

0 comments on commit 5c5fff9

Please sign in to comment.