Los quality gates son comprobaciones automatizadas en el pipeline que el código debe pasar para proceder — incluyendo pruebas, linting, análisis estático, umbrales de cobertura y escaneos de seguridad. Refuerzan estándares de calidad automáticamente, evitando que código deficiente avance hacia producción.
Qué son los quality gates
A QUALITY GATE is an automated CHECK that code must PASS to advance in the pipeline:
→ if the check fails, the pipeline STOPS (code doesn't merge/deploy)
→ enforces standards AUTOMATICALLY and consistently (not relying on humans to remember)
→ "Code must meet these standards to proceed" — automated, objective gates.
