Skip to content

Commit 2530f51

Browse files
authored
chore: Test on Ubuntu-24.04-arm and Node.js v23 (#3121)
1 parent e3f9a77 commit 2530f51

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/tests.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,19 @@ jobs:
9494
fail-fast: false
9595
max-parallel: 11
9696
matrix:
97-
os: [macos-latest, ubuntu-latest, windows-latest]
97+
os: [windows-latest, macos-latest, ubuntu-latest]
9898
python: ["3.9", "3.11", "3.13"]
99-
node: [18.x, 20.x, 22.x]
99+
node: [18.x, 20.x, 22.x, 23.x]
100100
include:
101101
- os: macos-13
102102
python: "3.13"
103-
node: 22.x
103+
node: 23.x
104+
- os: ubuntu-24.04-arm
105+
python: "3.13"
106+
node: 23.x
104107
- os: windows-2025
105108
python: "3.13"
106-
node: 22.x
109+
node: 23.x
107110
name: ${{ matrix.os }} - ${{ matrix.python }} - ${{ matrix.node }}
108111
runs-on: ${{ matrix.os }}
109112
steps:
@@ -119,13 +122,13 @@ jobs:
119122
python-version: ${{ matrix.python }}
120123
env:
121124
PYTHON_VERSION: ${{ matrix.python }} # Why do this?
122-
- uses: seanmiddleditch/gha-setup-ninja@v5
125+
- uses: seanmiddleditch/gha-setup-ninja@v6
123126
- name: Install Dependencies
124127
run: |
125128
npm install
126129
pip install pytest
127130
- name: Set Windows Env
128-
if: startsWith(matrix.os, 'windows')
131+
if: runner.os == 'Windows'
129132
run: |
130133
echo 'GYP_MSVS_VERSION=2015' >> $Env:GITHUB_ENV
131134
echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV

0 commit comments

Comments
 (0)