feat: CISandbox v1.0.0 — Interactive CI Pipeline Debugger with Local Env Sync

This commit is contained in:
Bun Bun
2026-06-16 06:24:19 +00:00
commit af0d21c025
45 changed files with 4584 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Workflow, Job } from './types.js';
export declare function parseWorkflow(filePath: string): Workflow;
export declare function listJobs(workflow: Workflow): {
name: string;
job: Job;
}[];
export declare function pickJob(workflow: Workflow, jobName?: string): {
name: string;
job: Job;
};
export declare function normalizeRunsOn(runsOn: string): string;
//# sourceMappingURL=parser.d.ts.map