Templates / flowchart

CI/CD pipeline

A build-test-deploy pipeline with a manual approval gate before production. Fits well in engineering handbooks.

Open in studio

Preview

Mermaid 11 renderer

Rendering preview...

Mermaid source

flowchart

flowchart LR
    push[Git push] --> build[Build + unit tests]
    build --> scan[Static analysis]
    scan --> stage[Deploy to staging]
    stage --> e2e[E2E test suite]
    e2e --> gate{Manual approval}
    gate -->|approved| prod[Deploy to production]
    gate -->|rejected| fix[Back to development]
    prod --> monitor[Monitoring + alerts]

More templates