What problem does it solve? Teams shipping code without automated verification accumulate broken builds, undetected bugs, and risky deployments. This Skill establishes a consistent quality gate pipeline so every change passes lint, type checks, tests, and builds before reaching production. ## Core Features & Use Cases - Quality Gate Pipelines: Set up GitHub Actions workflows covering lint, type checking, unit tests, integration tests with database services, E2E tests with Playwright, security audits, and bundle size checks. - Deployment Strategies: Configure preview deployments per PR, feature flags, staged rollouts from staging to production, and manual rollback workflows. - CI Optimization & Automation: Apply caching, parallel jobs, path filters, and matrix builds to keep pipelines under 10 minutes, plus Dependabot configuration and branch protection rules. - Use Case: A team starting a new Node.js project needs CI from day one. Use this Skill to generate a complete GitHub Actions workflow with all quality gates, branch protection, and a rollback plan. ## Quick Start Set up a CI pipeline for my project with lint, type check, tests, build, and a staging deployment workflow.