Skip to content

Commit 8f5c251

Browse files
committed
Update code-qa workflow to run tests on both Windows and Ubuntu
1 parent 34c9c6d commit 8f5c251

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/code-qa.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ jobs:
6262
run: npm run knip
6363

6464
test-extension:
65-
runs-on: ubuntu-latest
65+
runs-on: ${{ matrix.os }}
66+
strategy:
67+
matrix:
68+
os: [ubuntu-latest, windows-latest]
6669
steps:
6770
- name: Checkout code
6871
uses: actions/checkout@v4
@@ -77,7 +80,10 @@ jobs:
7780
run: npx jest --silent
7881

7982
test-webview:
80-
runs-on: ubuntu-latest
83+
runs-on: ${{ matrix.os }}
84+
strategy:
85+
matrix:
86+
os: [ubuntu-latest, windows-latest]
8187
steps:
8288
- name: Checkout code
8389
uses: actions/checkout@v4

0 commit comments

Comments
 (0)