Skip to content

Commit bf987fe

Browse files
committed
chore(ci): add windows to build matrix
1 parent b9c9081 commit bf987fe

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ jobs:
66
test:
77
env:
88
FORCE_COLOR: '1'
9-
name: Build & Test
10-
runs-on: ubuntu-latest
9+
name: Build & Test (Node ${{ matrix.node-version }}, ${{ matrix.os }})
10+
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
include:
14-
- node-version: '20'
15-
- node-version: '22'
16-
- node-version: '24'
13+
os: [ubuntu-latest, windows-latest]
14+
node-version: ['20', '22', '24']
15+
exclude:
16+
- os: windows-latest
17+
node-version: '20'
1718
steps:
1819
- name: Checkout Repository
1920
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

0 commit comments

Comments
 (0)