We follow a rigorous end-to-end quality process to ensure that all code deployed to our cloud is thoroughly validated, not only for functionality but also to meet our internal security and compliance standards.
Before a pull request (PR) is merged, it must pass several mandatory checks to ensure the code is of the highest quality:
Once the PR passes all checks, it undergoes a peer code review—sometimes with two rounds of review for added scrutiny. Only after all review gates are cleared is the PR merged into the main branch. Additionally, developers run a set of regression tests to confirm that the existing codebase remains intact after the changes.
Every three hours, our automated system pulls the latest code from the main branch, builds the artifacts, and runs P0 and P1 test cases. Any failures are promptly investigated and addressed.
A release branch is created from the main branch every week, and artifacts are built. This release goes through a full QA validation cycle, which includes both automated and manual testing. Any P0 or P1 defects, or regressions, are considered blockers and prevent the release from moving forward. Once the release has been fully validated and signed off, it moves to the deployment phase.
Deployments begin in Zone 0, where the first deployment is made. For more details on our deployment framework, please refer to deployment framework documentation.
This structured process ensures that only high-quality, secure code reaches production, providing a reliable and safe experience for our users.
Additionally, our CI pipelines have STO scans integrated and any vulnerabilities that are found at that point in time are flagged for release exceptions as P0/P1 vulnerabilities and automatically blocks the Prod deployments.