What problem does it solve? Teams shipping code without automated verification accumulate broken builds, flaky releases, and manual deployment risk. This Skill establishes a complete CI/CD pipeline so every change passes lint, type checks, tests, build, and security audits before reaching production. ## Core Features & Use Cases - Quality Gate Pipelines: Enforce lint, typecheck, unit tests, build, integration, E2E, security audit, and bundle size checks on every pull request. - GitHub Actions Templates: Ready-to-adapt workflow configurations including database-backed integration tests with Postgres services and Playwright E2E runs. - Deployment Strategies: Preview deployments per PR, feature flags, staged rollouts, and manual rollback workflows. - CI Optimization: Caching, parallel jobs, path filters, and matrix builds to keep pipelines under 10 minutes. - Use Case: A team setting up a new Node.js project uses this Skill to create a GitHub Actions pipeline that blocks merges until all quality gates pass, deploys previews for each PR, and provides a one-command rollback path. ## Quick Start Set up a GitHub Actions CI pipeline for my Node.js project with lint, typecheck, tests, build, and a staging deployment with rollback.