Skip to content

Commit a5dc15e

Browse files
committed
Add Windows CI testing
1 parent 58c7041 commit a5dc15e

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ on:
88

99
jobs:
1010
build-and-test:
11-
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest, windows-latest]
14+
15+
runs-on: ${{ matrix.os }}
16+
1217
steps:
1318
- name: Checkout repository
1419
uses: actions/checkout@v4
@@ -32,4 +37,4 @@ jobs:
3237
run: npm run test
3338

3439
- name: Build project
35-
run: npm run build
40+
run: npm run build

0 commit comments

Comments
 (0)