What problem does it solve? Without automated pipelines, broken code reaches production, quality checks get skipped under pressure, and deployments become risky manual events. This Skill sets up CI/CD pipelines that enforce lint, type checking, tests, builds, and security audits on every change before merge. ## Core Features & Use Cases - Quality Gate Pipelines: Configures GitHub Actions workflows running lint, type check, unit tests, build, integration tests, E2E tests, and security audits on every pull request. - Deployment Strategies: Implements preview deployments per PR, feature flags, staged rollouts, and manual rollback workflows so every deployment is reversible. - CI Optimization & Feedback Loops: Applies caching, parallel jobs, path filters, and test sharding to keep pipelines under 10 minutes, and feeds CI failure output back to agents for automated fixes. - 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 all quality gates, branch protection rules, Dependabot configuration, and a staging-to-production deployment flow with rollback. ## Quick Start Set up a GitHub Actions CI pipeline for my Node.js project with lint, type check, tests, build, and a staging deployment with rollback.