CI/CD भनेको Continuous Integration र Continuous Delivery/Deployment को सङ्क्षिप्त रूप हो — यी अभ्यासहरूले सफ्टवेयर बिल्ड गर्ने, परीक्षण गर्ने, र डिप्लय गर्नेलाई स्वचालित गर्छन्। लक्ष्य भनेको परिवर्तनहरू बारम्बार, विश्वस्ततापूर्वक, र द्रुत रूपमा रिलिज गर्नु हो, जहाँ स्वचालनले म्यानुअल, त्रुटि-प्रवण प्रक्रियाहरूको स्थान लिन्छ।
CI — Continuous Integration
CONTINUOUS INTEGRATION: developers frequently merge code into a shared branch, and each
change is AUTOMATICALLY built and tested:
→ on every push/PR: build the code + run tests (automatically)
→ catch integration problems and bugs EARLY (immediately, not weeks later)
→ keep the main branch in a working state
→ Frequent integration + automated verification = fewer, smaller, easier-to-fix problems.
