What problem does it solve? Without automated pipelines, broken code reaches production, tests get skipped, and deployments become risky manual events. This Skill establishes enforced quality gates so every change passes lint, type checks, tests, and builds before merge. ## 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: Implement preview deployments per PR, feature flags, staged rollouts, and manual rollback workflows. - CI Optimization & Feedback Loops: Apply caching, parallel jobs, path filters, and matrix builds to keep pipelines under 10 minutes, and feed CI failure output back to AI agents for automated fixes. - Use Case: A team starting a new Node.js project needs branch protection, automated checks on every PR, and a staging-to-production deployment flow with a rollback plan. ## Quick Start Set up a CI pipeline for my project with lint, type check, tests, build, and a staging deployment workflow.