PipelineStep
Handle
interface PipelineStep { readonly description: string; readonly name: string; addTag(tag: string): void; dependsOn(stepName: string): void; requiredBy(stepName: string): void;} 5 members
Properties
property
description string get Gets the human-readable description of the step
property
name string get Gets the unique name of the step
Methods
method
dependsOn Adds a dependency on another step by name
dependsOn(stepName: string): voidParameters
stepName string method
requiredBy Specifies that another step requires this step by name
requiredBy(stepName: string): voidParameters
stepName string