What problem does it solve? Teams shipping code without automated verification accumulate broken builds, untested changes, and risky deployments. This Skill establishes a repeatable quality gate pipeline so every pull request passes lint, type checks, tests, build, and security audits before merge. ## Core Features & Use Cases - Quality Gate Pipelines: GitHub Actions configurations covering lint, type check, unit tests, build, integration tests with Postgres services, E2E tests with Playwright, and security audits. - Deployment Strategies: Preview deployments per PR, feature flags, staged rollouts, and manual rollback workflows with monitoring windows. - CI Optimization & Feedback Loops: Caching, parallel jobs, path filters, and matrix builds to keep pipelines under 10 minutes, plus patterns for feeding CI failures back to AI agents for automated fixes. - Use Case: When setting up a new Next.js project, use this Skill to generate a complete GitHub Actions workflow with branch protection, Dependabot, and a rollback plan before the first production deploy. ## Quick Start Set up a CI pipeline for my project with lint, type checking, tests, build, and a staging deployment workflow.