Una pipeline CI/CD è una sequenza automatizzata di fasi che il codice attraversa — dal commit al deployment — tipicamente includendo passi di build, test e deploy. Definisce il percorso automatizzato che trasforma una modifica del codice in un release deployato.
Il concetto di pipeline
A PIPELINE is an automated workflow of STAGES that run in sequence on each code change:
→ triggered by an event (a push, a PR, a merge, a schedule)
→ each stage runs automatically; if a stage FAILS, the pipeline STOPS (broken code
doesn't proceed to later stages or production)
→ provides automation, consistency, and fast feedback
