Skip to content

Commit 5c5fff9

Browse files
committed
ci(build): remove the .x from node versions
1 parent f93593a commit 5c5fff9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4.1.6
15-
- name: Use Node.js 20.x
15+
- name: Use Node.js 20
1616
uses: actions/setup-node@v4.0.2
1717
with:
18-
node-version: 20.x
18+
node-version: 20
1919
cache: 'yarn'
2020
- run: yarn install --immutable
2121
- run: yarn run lint
2222
test:
2323
strategy:
2424
matrix:
25-
node-version: [18.x, 20.x]
25+
node-version: [18, 20, 21, 22, 23, 24]
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v4.1.6

0 commit comments

Comments
 (0)