fix(ci): narrow E2E to T6 only — T1-T5 need local monorepo path

T1-T5 depend on `upulse init` which runs `bun install` with file:../pulse.
CI runner doesn't have the monorepo layout that findLocalPulsePath() expects.
T6 (--dir flag) only tests config resolution, no init needed.

小橘 🍊(NEKO Team)
This commit is contained in:
2026-04-14 09:55:22 +00:00
parent 876a1ec4fd
commit 52458d7a31
+2 -2
View File
@@ -44,7 +44,7 @@ jobs:
working-directory: packages/upulse
run: bun test src/config.test.ts
- name: E2E tests (T1 + T3 + T6)
- name: E2E tests (--dir flag only)
working-directory: packages/upulse
run: bun test src/e2e/t1-init-daemon-tick.test.ts src/e2e/t3-promote-guard.test.ts src/e2e/t6-dir-flag.test.ts
run: bun test src/e2e/t6-dir-flag.test.ts
timeout-minutes: 5