/** * Workflow Setup Check * * Ensures that .github/workflows/validate.yml exists and is configured * to run vibe-validate validation in CI. * * This check reuses the existing workflow generation logic from the * generate-workflow command to create a standard GitHub Actions workflow. */ import type { SetupCheck, CheckResult, FixResult, PreviewResult, FixOptions } from '../setup-engine.js'; export declare class WorkflowSetupCheck implements SetupCheck { readonly id = "workflow"; readonly name = "GitHub Actions Workflow Setup"; check(options?: FixOptions): Promise; preview(options?: FixOptions): Promise; fix(options?: FixOptions): Promise; /** * Generate workflow content using the existing workflow generator */ private generateWorkflowContent; } //# sourceMappingURL=workflow-check.d.ts.map