CI/CD pipeline คือ ลำดับขั้นตอนอัตโนมัติ ที่โค้ดเดินผ่าน ตั้งแต่การ commit จนถึงการ deploy ซึ่งโดยทั่วไปประกอบด้วยขั้นตอน build ทดสอบ และ deploy มันกำหนดเส้นทางอัตโนมัติที่เปลี่ยนการเปลี่ยนแปลงโค้ดให้กลายเป็นการปล่อยที่ deploy แล้ว
แนวคิดของ 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
