Parallel execution step

interface ParallelStep {
    type: "parallel";
    id: string;
    branches: WorkflowStep[][];
    waitForAll?: boolean;
}

Properties

type: "parallel"
id: string
branches: WorkflowStep[][]
waitForAll?: boolean