runstorm - v0.6.2
    Preparing search index...

    Function runCommandMatrix

    • Runs a matrix of commands. Each row (top level array entry) is executed all at once, and the whole thing aborts if any fail.

      Parameters

      • commandInputsMatrix: readonly (
            readonly Readonly<
                {
                    color?: | "red"
                    | "green"
                    | "yellow"
                    | "blue"
                    | "cyan"
                    | "magenta"
                    | "bgRed"
                    | "bgGreen"
                    | "bgYellow"
                    | "bgBlue"
                    | "bgCyan"
                    | "bgMagenta";
                    command: string;
                    cwd?: string;
                    name?: string;
                },
            >[]
        )[]
      • options: Readonly<RunCommandOptions> = {}

      Returns Promise<{ exitCodes: Exit[][]; highestExitCode: number; terminated: boolean }>

      The exits codes of each command in order.