Skip to content

Commit 0e062af

Browse files
author
Gonzalo Diaz
committed
[REFACTOR] [Github Actions] nodejs 24.x breaks jest. Avoiding 24.x versions.
1 parent af47480 commit 0e062af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/node-coverage.yml

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
20-
node-version: [20.x, 22.x, 24.x]
20+
node-version: [18.x, 20.x, 22.x]
2121
# See supported Node.js release schedule
2222
# at https://nodejs.org/en/about/releases/
2323

0 commit comments

Comments
 (0)