What problem does it solve? Setting up reliable CI/CD pipelines is error-prone and often postponed, leaving projects without automated quality gates that catch bugs before production. This Skill provides ready-to-use pipeline configurations and deployment strategies so every change is linted, type-checked, tested, and built before merge. ## Core Features & Use Cases - Quality Gate Pipelines: Enforces lint, type check, unit tests, build, integration tests, E2E tests, security audit, and bundle size checks on every pull request. - GitHub Actions Templates: Provides complete workflow YAML for basic CI, database-backed integration tests with Postgres services, and Playwright E2E runs. - Deployment Strategies: Covers preview deployments, feature flags, staged rollouts, and manual rollback workflows with secrets management guidance. - Use Case: When starting a new Node.js project, use this Skill to generate a full GitHub Actions CI pipeline with parallel lint, typecheck, and test jobs, plus branch protection rules that block merging on failure. ## Quick Start Set up a CI pipeline for my Node.js project with lint, type checking, tests, and build gates on every pull request.