hello_world_flow.flow

12 lines | 200 B Blame History Raw Download
nodes:
  - name: n1
    type: command
    config:
      command: echo "Hello World."
  - name: n2
    dependsOn:
      - n1
    type: command
    config:
      command: echo "This is the second job."