What problem does it solve? Without automated pipelines, broken code reaches production, quality checks are skipped under pressure, and deployments become risky manual events. This Skill enforces lint, type checking, tests, build, and security audits on every change so no unverified code is merged. ## Core Features & Use Cases - Quality Gate Pipelines: GitHub Actions workflows covering lint, type check, unit tests, build, integration tests with PostgreSQL services, E2E tests with Playwright, and security audits. - Deployment Strategies: Preview deployments per PR, feature flags, staged rollouts with monitoring windows, and manual rollback workflows. - 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 Node.js project, use this Skill to generate a complete GitHub Actions pipeline that blocks merges until lint, tests, and build pass, with Dependabot configured for dependency updates. ## Quick Start Set up a CI pipeline for my project that runs lint, type checks, tests, and build on every pull request and blocks merging when any check fails.