We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0845b3 commit b878191Copy full SHA for b878191
2 files changed
.github/workflows/ci-win.yml
@@ -18,13 +18,21 @@ jobs:
18
- standard
19
- experimental
20
node-version:
21
- - 18.x
22
- 20.x
23
- 22.x
+ - 24.x
24
+ - 25.x
25
architecture: [x64, x86]
26
os:
27
- windows-2022
28
- windows-2025
29
+ exclude:
30
+ # Skip when node 24.x or 25.x AND architecture is x86 since there is
31
+ # no published Node.js x86 build for those versions.
32
+ - node-version: 24.x
33
+ architecture: x86
34
+ - node-version: 25.x
35
36
runs-on: ${{ matrix.os }}
37
steps:
38
- name: Harden Runner
.github/workflows/ci.yml
@@ -18,9 +18,10 @@ jobs:
- macos-latest
- ubuntu-latest
0 commit comments