Skip to content
C Codeloom

Topics / CI/CD

CI/CD

Continuous integration and delivery. GitHub Actions, pipelines, and best practices.

Why learn CI/CD?

  • Catches broken builds before they reach main.

  • Automates the boring parts: tests, linting, releases, deploys.

  • Industry-standard practice — expected on every serious team.

  • Skills transfer across GitHub Actions, GitLab CI, CircleCI, etc.

What you can build with CI/CD

Running tests on every PR Automated deploys to staging and prod Publishing packages and Docker images Scheduled jobs and cron-like workflows

CI/CD tutorials

1 article

Hand-written tutorials, ordered as a recommended learning path.

  1. 01 Deploy with GH Actions A practical guide to production deploys with GitHub Actions — environments, secrets, OIDC, deploy-on-tag vs deploy-on-main, and pushing images to AWS, Vercel, or Fly.