Skip to content

Commit 69a5d5d

Browse files
committed
test(workflow): run test CI in Windows
1 parent 421f971 commit 69a5d5d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ on:
1313
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1414
jobs:
1515
test:
16-
runs-on: ubuntu-latest
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
matrix:
19+
os: [ubuntu-latest, windows-latest]
1720

1821
# Steps represent a sequence of tasks that will be executed as part of the job
1922
steps:
@@ -26,7 +29,7 @@ jobs:
2629
- name: Setup Node.js
2730
uses: actions/setup-node@v4
2831
with:
29-
node-version: 20
32+
node-version: 22
3033
cache: "pnpm"
3134

3235
- name: Install Dependencies

0 commit comments

Comments
 (0)