Skip to content

Commit 0d2321f

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] NodeJS rewrite.
1 parent 140f894 commit 0d2321f

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/node.js.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@ on: # yamllint disable-line rule:truthy
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-24.04
15+
name: NodeJS Jest CI Test
16+
runs-on: ${{ matrix.os }}
1617
strategy:
1718
matrix:
18-
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
19+
os: ["ubuntu-24.04", "macos-14"
20+
# , "windows-2022"
21+
]
1922
node-version: [18.x, 20.x, 22.x]
2023
# See supported Node.js release schedule
2124
# at https://nodejs.org/en/about/releases/
@@ -32,8 +35,8 @@ jobs:
3235
- name: Install dependencies
3336
run: npm ci --verbose
3437

35-
- name: Lint
36-
run: npm run lint
38+
# - name: Lint
39+
# run: npm run lint
3740

3841
- name: Run the tests
3942
run: npm run jest:ci

0 commit comments

Comments
 (0)