Promptles
Automation & Scripting

Pipeline

intermediate

Definition

A series of automated steps that data or code flows through, where the output of one step becomes the input of the next. Pipelines ensure tasks happen in the right order and can stop early if a step fails.

In the wild

A CI/CD pipeline might: 1) install dependencies, 2) run linting, 3) run tests, 4) build the app, 5) deploy to production. If tests fail in step 3, the pipeline stops and doesn't deploy broken code.

More from Automation & Scripting