feat: add pipeline orchestrator skeleton with startup checks, stage runners, shutdown handler, and report generation

This commit is contained in:
lila 2026-05-03 23:01:29 +02:00
parent 080fad1998
commit 87aeb072c5
4 changed files with 584 additions and 9 deletions

View file

@ -216,7 +216,9 @@ async function main(): Promise<void> {
await importStage2();
}
main().catch((err) => {
console.error(err);
process.exit(1);
});
if (import.meta.url === `file://${process.argv[1]}`) {
main().catch((err) => {
console.error(err);
process.exit(1);
});
}