Skip to content

Commit 3cb2e25

Browse files
fix(ci): build splicer on windows
Signed-off-by: Victor Adossi <vadossi@cosmonic.com>
1 parent 548d1ab commit 3cb2e25

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ jobs:
3333
#########
3434

3535
build-splicer:
36-
runs-on: ubuntu-latest
36+
runs-on: ${{ matrix.os }}
37+
strategy:
38+
matrix:
39+
os:
40+
- windows-latest
41+
- ubuntu-latest
3742
steps:
3843
- uses: actions/checkout@v4
3944

test/cases/http-server/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export async function test(instance) {
1414

1515
try {
1616
const resp = await fetch(`http://localhost:${port}`);
17+
console.log("resp:", resp);
1718
const text = await resp.text();
1819
strictEqual(text, 'Hello world!');
1920
} finally {

0 commit comments

Comments
 (0)