fix(ci): sequential steps + single install to prevent OOM on runner #95
Reference in New Issue
Block a user
Delete Branch "fix/ci-sequential"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
All quality steps (typecheck, lint, format, test) were running in parallel and each re-ran
pnpm install. On merge commits with accumulated code this hit the runner OOM limit (exit 254).Fix: install once, share workspace, sequential execution.