What problem does it solve? Manual verification of code changes does not scale and lets broken code reach production. This Skill sets up automated CI/CD pipelines that enforce lint, type checking, tests, builds, and security audits on every pull request, catching defects before merge. ## Core Features & Use Cases - Quality Gate Pipelines: Configure GitHub Actions workflows running lint, type check, unit tests, build, integration tests, E2E tests, and security audits in sequence. - Deployment Strategies: Implement preview deployments, feature flags, staged rollouts, and manual rollback workflows so every release is reversible. - CI Optimization: Apply caching, parallel jobs, path filters, and matrix builds to keep pipelines under 10 minutes. - Use Case: A team adds a new microservice and needs every PR verified automatically. Use this Skill to generate a GitHub Actions workflow with Postgres service containers for integration tests, Playwright for E2E, and branch protection rules blocking 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 rollback workflow.