Skip to content

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/node-gyp.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version: ["22"]
13-
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
13+
os: [macos-latest, ubuntu-latest, windows-latest]
1414
python-version: ["3.9", "3.11", "3.13"]
15+
include:
16+
- node-version: "22"
17+
os: macos-13
18+
python-version: "3.13"
19+
- node-version: "22"
20+
os: windows-2025
21+
python-version: "3.13"
1522
runs-on: ${{ matrix.os }}
1623
steps:
1724
- name: Clone gyp-next
@@ -47,7 +54,6 @@ jobs:
4754
cp -r gyp-next node-gyp/gyp
4855
- name: Run tests (macOS or Linux)
4956
if: runner.os != 'Windows'
50-
shell: bash
5157
run: |
5258
cd node-gyp
5359
npm test --python="${pythonLocation}/python"

.github/workflows/nodejs.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
12+
os: [macos-latest, ubuntu-latest, windows-latest]
1313
python: ["3.9", "3.11", "3.13"]
14+
include:
15+
- os: macos-13
16+
python-version: "3.13"
17+
- os: windows-2025
18+
python-version: "3.13"
1419

1520
runs-on: ${{ matrix.os }}
1621
steps:

0 commit comments

Comments
 (0)