Integración Continua (CI) es la práctica de que los desarrolladores fusionen su código frecuentemente en un repositorio compartido, donde cada integración se verifica automáticamente (se construye y se prueba). Detecta problemas temprano y mantiene la base de código en un estado saludable y funcional.
La práctica central
Developers integrate code FREQUENTLY (at least daily) into the shared/main branch:
→ each integration is AUTOMATICALLY built and tested (by a CI server/pipeline)
→ problems are caught IMMEDIATELY (on each small change, not after weeks)
→ vs the old way: developers work in isolation for long periods → painful "integration
hell" when finally merging diverged work (many conflicts, surprises, bugs).
