fix(ci): create JUnit output dirs before tests (#20959)

This commit is contained in:
Kit Langton
2026-04-03 22:47:20 -04:00
committed by GitHub
parent 288eb044cb
commit 00fa68b3a7
3 changed files with 3 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
"prepare": "effect-language-service patch || true",
"typecheck": "tsgo --noEmit",
"test": "bun test --timeout 30000",
"test:ci": "bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
"test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
"build": "bun run script/build.ts",
"upgrade-opentui": "bun run script/upgrade-opentui.ts",
"dev": "bun run --conditions=browser ./src/index.ts",