Skip to content

Commit 6a29799

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] node js based worflows updated: 18.x, 20.x, 22.x -> 20.x, 22.x, 24.x
1 parent 8be27ca commit 6a29799

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/eslint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
30-
node-version: [18.x, 20.x, 22.x]
30+
node-version: [20.x, 22.x, 24.x]
3131
# See supported Node.js release schedule
3232
# at https://nodejs.org/en/about/releases/
3333
permissions:
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Node.js
4444
uses: actions/setup-node@v4
4545
with:
46-
node-version: 22.x
46+
node-version: ${{ matrix.node-version }}
4747

4848
- name: Install ESLint
4949
run: |

.github/workflows/node-coverage.js.yml renamed to .github/workflows/node-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Node.js
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 22.x
26+
node-version: 24.x
2727

2828
- name: Install dependencies
2929
run: npm ci --verbose

.github/workflows/node.js.yml renamed to .github/workflows/node-test.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ on: # yamllint disable-line rule:truthy
1111
workflow_dispatch:
1212

1313
jobs:
14-
build:
14+
test:
1515
name: NodeJS Jest CI Test
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
1919
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
20-
node-version: [18.x, 20.x, 22.x]
20+
node-version: [20.x, 22.x, 24.x]
2121
# See supported Node.js release schedule
2222
# at https://nodejs.org/en/about/releases/
2323

0 commit comments

Comments
 (0)