File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 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
6772 run : make lib/spidermonkey-embedding-splicer.js
6873
6974 build :
70- runs-on : ubuntu-latest
75+ runs-on : ${{ matrix.os }}
7176 needs :
7277 - build-splicer
7378 strategy :
7782 - ' release'
7883 - ' debug'
7984 - ' weval'
85+ os :
86+ - windows-latest
87+ - ubuntu-latest
8088 steps :
8189 - uses : actions/checkout@v4
8290 with :
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments