Skip to content

Commit bbd6299

Browse files
authored
continue-on-error: ${{ startsWith(matrix.os, 'macos-') }}
1 parent bfe2e39 commit bbd6299

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ jobs:
1919
node-version: [22.x, 21.x, 20.x, 19.x, 18.x, 17.x, 16.x, 15.x]
2020
os: [windows-latest]
2121
include:
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
22+
- node-version: lts/*
23+
os: macos-13 # macOS on Intel
24+
- node-version: lts/*
25+
os: macos-latest # macOS on arm64
2726
- node-version: lts/*
2827
os: ubuntu-latest # Linux on x64
2928
- node-version: lts/*
@@ -40,6 +39,7 @@ jobs:
4039
os: windows-2019
4140
- node-version: 8.x
4241
os: windows-2019
42+
continue-on-error: ${{ startsWith(matrix.os, 'macos-') }} # TODO: Remove this line after nodejs/nan#985 or similar.
4343
runs-on: ${{ matrix.os }}
4444
steps:
4545
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)