orbits

How to use the cdk with Orbits

You can see the result of this tutorial here:

export class DeployMyStack extends CdkDeploy{
    StackConstructor = MyStack
}
export class MyPipeline extends Workflow{

    define(){
        this.next(()=>{
            // ...
        }).next(()=>{
            // ...
        })

    }

}