File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -99,40 +99,16 @@ jobs:
9999 cd packages/core
100100 bun run test:js
101101
102- windows-smoke :
103- name : Windows Smoke Test
104- needs : build
105- runs-on : windows-latest
106- defaults :
107- run :
108- shell : bash
109- steps :
110- - name : Checkout code
111- uses : actions/checkout@v4
112-
113- - name : Setup Bun
114- uses : oven-sh/setup-bun@v2
115- with :
116- bun-version : latest
117-
118- - name : Install dependencies
119- run : bun install
120-
121- - name : Smoke test core import on Windows
122- run : |
123- cd packages/core
124- bun -e "await import('./src/index.ts')"
125-
126102 # Gate job for branch protection
127103 build-complete :
128104 name : Core - Build and Test
129- needs : [test, windows-smoke ]
105+ needs : [test]
130106 runs-on : ubuntu-latest
131107 if : always()
132108 steps :
133109 - name : Check test results
134110 run : |
135- if [ "${{ needs.test.result }}" != "success" ] || [ "${{ needs.windows-smoke.result }}" != "success" ] ; then
111+ if [ "${{ needs.test.result }}" != "success" ]; then
136112 echo "Tests failed"
137113 exit 1
138114 fi
You can’t perform that action at this time.
0 commit comments