drupflare/drangler - v0.1.0
    Preparing search index...

    Interface BuildReport

    what a build did, and what it left behind

    interface BuildReport {
        resumed: boolean;
        source: { from: string; local: boolean; ref: string; url: string };
        steps: {
            code?: number;
            command: string;
            id: BuildStepId;
            reason: string;
            run: boolean;
        }[];
        workspace: string;
    }
    Index
    resumed: boolean

    true when every step was skipped, which is the resume case

    source: { from: string; local: boolean; ref: string; url: string }
    steps: {
        code?: number;
        command: string;
        id: BuildStepId;
        reason: string;
        run: boolean;
    }[]
    workspace: string