CI/CD Pipeline
Commit through build, test, and deploy, with the failure path back to the author.
Mermaid source
graph LR
A[Commit] --> B[CI build]
B --> C{Tests pass?}
C -->|Yes| D[(Registry)]
C -->|No| E[Notify author]
D --> F[Deploy to prod]
E --> ACategory: Engineering · Tags: ci, deployment, flowchart