We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e6599 commit b48ff22Copy full SHA for b48ff22
packages/@aws-cdk/pipelines/lib/blueprint/step.ts
@@ -13,6 +13,10 @@ import { FileSet, IFileSetProducer } from './file-set';
13
export abstract class Step implements IFileSetProducer {
14
/**
15
* Define a sequence of steps to be executed in order.
16
+ *
17
+ * If you need more fine-grained step ordering, use the `addStepDependency()`
18
+ * API. For example, if you want `secondStep` to occur after `firstStep`, call
19
+ * `secondStep.addStepDependency(firstStep)`.
20
*/
21
public static sequence(steps: Step[]): Step[] {
22
for (let i = 1; i < steps.length; i++) {
0 commit comments