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 b539c32Copy full SHA for b539c32
.github/workflows/node.js.yml
@@ -12,10 +12,12 @@ on: # yamllint disable-line rule:truthy
12
13
jobs:
14
build:
15
- runs-on: ubuntu-24.04
+ runs-on: ${{ matrix.os }}
16
strategy:
17
matrix:
18
- os: ["ubuntu-24.04", "macos-14", "windows-2022"]
+ os: ["ubuntu-24.04", "macos-14"
19
+ # , "windows-2022"
20
+ ]
21
node-version: [18.x, 20.x, 22.x]
22
# See supported Node.js release schedule
23
# at https://nodejs.org/en/about/releases/
@@ -32,8 +34,8 @@ jobs:
32
34
- name: Install dependencies
33
35
run: npm ci --verbose
36
- - name: Lint
- run: npm run lint
37
+ # - name: Lint
38
+ # run: npm run lint
39
40
- name: Run the tests
41
run: npm run jest:ci
0 commit comments