LLevelUp
0
← Back to topic

CI/CD Basics

CI runs verification automatically when code changes. CD ships verified code to an environment. Good pipelines reduce manual release mistakes.

Typical pipeline:

install -> lint/test -> build -> deploy

TIP

CI should run the same commands developers run locally, or failures become hard to reproduce.

Further Learning

  • “CI CD pipeline basics” — workflow model
  • “GitHub Actions Node pnpm” — common implementation
  • “build artifact deployment” — reproducible release output