Skip to content

Commit b539c32

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

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/node.js.yml

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

1313
jobs:
1414
build:
15-
runs-on: ubuntu-24.04
15+
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
18+
os: ["ubuntu-24.04", "macos-14"
19+
# , "windows-2022"
20+
]
1921
node-version: [18.x, 20.x, 22.x]
2022
# See supported Node.js release schedule
2123
# at https://nodejs.org/en/about/releases/
@@ -32,8 +34,8 @@ jobs:
3234
- name: Install dependencies
3335
run: npm ci --verbose
3436

35-
- name: Lint
36-
run: npm run lint
37+
# - name: Lint
38+
# run: npm run lint
3739

3840
- name: Run the tests
3941
run: npm run jest:ci

0 commit comments

Comments
 (0)