Skip to content

Commit 9ea7409

Browse files
authored
test: Run tests on Node.js v22 (#244)
1 parent 29fa534 commit 9ea7409

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/node-gyp.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [macos-latest, ubuntu-latest, windows-latest]
14-
python: ["3.8", "3.10", "3.12", "3.13"]
15-
13+
node-version: ["22"]
14+
os: [macos-13, macos-14, ubuntu-latest, windows-latest]
15+
python-version: ["3.8", "3.10", "3.12", "3.13"]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Clone gyp-next
@@ -26,10 +26,10 @@ jobs:
2626
path: node-gyp
2727
- uses: actions/setup-node@v4
2828
with:
29-
node-version: 20.x
29+
node-version: ${{ matrix.node-version }}
3030
- uses: actions/setup-python@v5
3131
with:
32-
python-version: ${{ matrix.python }}
32+
python-version: ${{ matrix.python-version }}
3333
allow-prereleases: true
3434
- name: Install Python dependencies
3535
run: |

.github/workflows/python_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
max-parallel: 5
1717
matrix:
18-
os: [macos-latest, ubuntu-latest] # , windows-latest]
18+
os: [macos-13, macos-14, ubuntu-latest] # , windows-latest]
1919
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2020
steps:
2121
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)