We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140f894 commit 0d2321fCopy full SHA for 0d2321f
.github/workflows/node.js.yml
@@ -12,10 +12,13 @@ on: # yamllint disable-line rule:truthy
12
13
jobs:
14
build:
15
- runs-on: ubuntu-24.04
+ name: NodeJS Jest CI Test
16
+ runs-on: ${{ matrix.os }}
17
strategy:
18
matrix:
- os: ["ubuntu-24.04", "macos-14", "windows-2022"]
19
+ os: ["ubuntu-24.04", "macos-14"
20
+ # , "windows-2022"
21
+ ]
22
node-version: [18.x, 20.x, 22.x]
23
# See supported Node.js release schedule
24
# at https://nodejs.org/en/about/releases/
@@ -32,8 +35,8 @@ jobs:
32
35
- name: Install dependencies
33
36
run: npm ci --verbose
34
37
- - name: Lint
- run: npm run lint
38
+ # - name: Lint
39
+ # run: npm run lint
40
41
- name: Run the tests
42
run: npm run jest:ci
0 commit comments