Skip to content

CI/CD, explained properly

How code gets built and shipped

Reading 1 of 5

CI is continuous integration

Continuous integration means: every time anyone pushes code, a machine automatically checks it. It builds the project, runs the automated tests, and reports pass or fail.

The point is speed of feedback. A problem found four minutes after a push is a small problem. The same problem found three weeks later, mixed with fifty other changes, is an afternoon.

CI is the robot that checks every change, immediately.