What is a Step?

We can think of a step as a single logic action in the pipeline.
In other words, a step represents the smallest unit that, combined with other steps, shapes the pipeline.

Step configuration

All steps contains these fields: name, type and config.

steps:
  - name: stepOneName
    type: step.one.type
    config:
      ### Configuration here
  - name: stepTwoName
    type: step.two.type
    config:
      ### Configuration here