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 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 running lint, type check, unit tests, build, integration tests, E2E tests, and security audits on every pull request. - Deployment Strategies: Configure preview deployments per PR, feature flags, staged rollouts to staging and production, and manual rollback workflows. - CI Feedback Loops: Feed CI failure output back to AI agents so they fix lint errors, type errors, and test failures automatically. - Use Case: A team starting a new Node.js project uses this Skill to create a GitHub Actions pipeline with parallel lint, typecheck, and test jobs, branch protection on main, Dependabot for dependency updates, and a rollback workflow for production deploys. ## Quick Start Set up a CI pipeline for my Node.js project with lint, type checking, tests, and build gates that block merging to main when any check fails.