Skip to content

Commit 473029c

Browse files
authored
TODO: Enable macOS after #985 or similar
1 parent d41536f commit 473029c

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
2+
# https://github.com/actions/setup-node
23
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
34

45
name: ci
@@ -18,13 +19,14 @@ jobs:
1819
node-version: [22.x, 21.x, 20.x, 19.x, 18.x, 17.x, 16.x, 15.x]
1920
os: [windows-latest]
2021
include:
21-
- node-version: 22.x
22-
os: macos-13 # macOS on Intel
23-
- node-version: 22.x
24-
os: macos-latest # macOS on arm64
25-
- node-version: 22.x
22+
# TODO: Enable macOS after nodejs/nan#985 or similar.
23+
# - node-version: lts/*
24+
# os: macos-13 # macOS on Intel
25+
# - node-version: lts/*
26+
# os: macos-latest # macOS on arm64
27+
- node-version: lts/*
2628
os: ubuntu-latest # Linux on x64
27-
- node-version: 22.x
29+
- node-version: lts/*
2830
os: ubuntu-24.04-arm # Linux on arm64
2931
- node-version: 14.x
3032
os: windows-2019
@@ -46,7 +48,7 @@ jobs:
4648
node-version: ${{ matrix.node-version }}
4749
- run: npm install
4850
# TODO: On Windows Node.js v11 these will fail but `make test` will succeed
49-
- if: matrix.node-version == '11.x'
51+
- if: matrix.node-version != '11.x'
5052
run: |
5153
npm run-script rebuild-tests
5254
npm test

0 commit comments

Comments
 (0)