build: unify bun quality gate

This commit is contained in:
ejclaw
2026-04-11 04:47:16 +09:00
parent f10833e818
commit 94d53e4cc3
29 changed files with 574 additions and 297 deletions

View File

@@ -34,10 +34,7 @@ export function normalizeWatchCiIntervalSeconds(
throw new Error('poll_interval_seconds must be an integer.');
}
if (
seconds < minSeconds ||
seconds > MAX_WATCH_CI_INTERVAL_SECONDS
) {
if (seconds < minSeconds || seconds > MAX_WATCH_CI_INTERVAL_SECONDS) {
throw new Error(
`poll_interval_seconds must be between ${minSeconds} and ${MAX_WATCH_CI_INTERVAL_SECONDS}.`,
);