fix(ci): stabilize latest-master acceptance gates

This commit is contained in:
Tianyi Cui
2026-08-12 19:41:06 +08:00
parent 238e7f456a
commit d322206246
10 changed files with 19 additions and 15 deletions

View File

@@ -65,7 +65,7 @@ describe('CI workflow', () => {
expect(windowsNative.name).toBe('windows node 24 / native complete')
expect(windowsNative.if).toBe("github.event_name == 'pull_request'")
expect(windowsNative.env).toMatchObject({
DSH_COVERAGE_TEST_TIMEOUT_MS: '15000',
DSH_COVERAGE_TEST_TIMEOUT_MS: '30000',
})
const nativeCommandSteps = (windowsNative.steps as unknown[]).filter((step): step is Record<string, unknown> & { run: string } => (
isRecord(step) && typeof step.run === 'string'