From a5f483c3351780698423603f102b0b5be431de55 Mon Sep 17 00:00:00 2001 From: Ed Lan <165309301+Edlan01@users.noreply.github.com> Date: Sun, 26 Jan 2025 19:44:50 +0100 Subject: [PATCH] feat: update topic content --- src/data/guides/devops-principles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/guides/devops-principles.md b/src/data/guides/devops-principles.md index b5ba89c9f..24cd7f8ef 100644 --- a/src/data/guides/devops-principles.md +++ b/src/data/guides/devops-principles.md @@ -57,7 +57,7 @@ Key components of this culture include shared responsibility, transparency, and ![Continuous Integration and Continuous Deployment](https://assets.roadmap.sh/guest/continous-development-vs-continuous-integration-l2fak.png) -Continuous Integration (CI) and Continuous Deployment (CD) are central to DevOps principles. CI is the practice of frequently integrating code changes into a shared repository, ensuring that new code is automatically tested and validated. This practice helps catch bugs early, reducing the risk of introducing issues into the main codebase. CI allows devs and ops teams to work more efficiently, improving the overall quality of the software. +Continuous Integration (CI) and Continuous Deployment (CD) are central to DevOps principles. CI is the practice of frequently integrating code changes into a shared repository, ensuring that new code is [automatically tested](https://roadmap.sh/devops/test-automation) and validated. This practice helps catch bugs early, reducing the risk of introducing issues into the main codebase. CI allows devs and ops teams to work more efficiently, improving the overall quality of the software. Continuous Deployment, on the other hand, takes things a step further by automatically deploying code changes to production once they pass the CI tests. This ensures that new features and bug fixes are delivered to users as quickly as possible. Together, CI and CD form a pipeline that streamlines the software development lifecycle, from code commit to production deployment in seconds (or in some cases, minutes).