Skip to content

Type Alias: ShellWorkflowStep

Makaio Framework


Makaio Framework / contracts / ShellWorkflowStep

ShellWorkflowStep = z.infer<typeof ShellWorkflowStepSchema>

Defined in: ../../../packages/contracts/src/workflow/schemas.ts:227

  • ShellWorkflowStep
    • z.infer<typeof ShellWorkflowStepSchema>
      • typeof ShellWorkflowStepSchema
type ShellWorkflowStep = {
id: string;
type: 'shell';
command: Array<string>;
needs?: Array<string> | undefined;
if?: string | undefined;
cwd?: string | undefined;
env?: Record<string, string> | undefined;
timeoutMs?: number | undefined;
};