What problem does it solve? Without automated pipelines, broken code reaches production, manual testing misses regressions, and teams lack a consistent enforcement mechanism for quality. This Skill sets up CI/CD pipelines that run lint, type checks, tests, builds, and security audits on every change before merge. ## Core Features & Use Cases - Quality Gate Pipelines: Configure GitHub Actions workflows that enforce lint, type checking, unit tests, build, integration tests, E2E tests, and security audits in sequence. - Deployment Strategies: Implement preview deployments per PR, feature flags, staged rollouts, and manual rollback workflows. - CI Optimization: Apply caching, parallel jobs, path filters, and matrix builds to keep pipelines under 10 minutes. - Use Case: A team starting a new Node.js project needs CI from day one. Use this Skill to generate a GitHub Actions workflow with Postgres service containers for integration tests, Playwright for E2E, and branch protection rules that block merges on failure. ## Quick Start Set up a GitHub Actions CI pipeline for my Node.js project with lint, type check, tests, build, and a Postgres integration test job.