ci-cd-and-automation

Configures CI/CD pipelines with quality gates, deployment strategies, and rollback workflows.

665|3|Updated Sep 12, 2026
One-click install
npx skills add https://github.com/rizqinrr/viserys-agent --skill ci-cd-and-automation-rizqinrr
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ci-cd-and-automation
Source: https://github.com/rizqinrr/viserys-agent/tree/main/skills/ci-cd-and-automation
Command: npx skills add https://github.com/rizqinrr/viserys-agent --skill ci-cd-and-automation-rizqinrr

SYSTEM DOCUMENTATION & REQUIREMENTS

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: Configures GitHub Actions workflows running lint, type check, unit tests, build, integration tests, E2E tests, and security audits on every pull request. - Deployment Strategies: Implements preview deployments, feature flags, staged rollouts, and rollback workflows so releases are reversible and low-risk. - CI Feedback Loops: Feeds CI failure output back to AI agents so lint errors, type errors, and test failures get fixed and re-verified automatically. - Use Case: A team starting a new Node.js project uses this Skill to set up a GitHub Actions pipeline with parallel lint, typecheck, and test jobs, branch protection on main, and a Vercel preview deployment per PR. ## Quick Start Set up a CI pipeline for my project that runs lint, type checking, tests, and build on every pull request with branch protection on main.

Frequently Asked Questions about ci-cd-and-automation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a CI pipeline with GitHub Actions?

Create a workflow file at .github/workflows/ci.yml that triggers on pull requests and pushes to main. Add jobs that install dependencies with npm ci, then run lint, tsc --noEmit, tests, and build in sequence or as parallel jobs.

How to run integration tests with a database in GitHub Actions?

Use the services key to spin up a PostgreSQL container with health checks, then run migrations and tests against it. Store the database password in GitHub Secrets rather than hardcoding credentials in the workflow file.

What quality gates should a CI pipeline include?

A complete pipeline runs lint, type checking, unit tests, build, integration tests, optional E2E tests, security audit, and bundle size checks. No gate should be skipped or disabled to make the pipeline pass.

Why is my CI pipeline slow and how do I fix it?

Slow pipelines usually lack dependency caching and run jobs sequentially. Apply caching via setup-node, split lint, typecheck, and test into parallel jobs, use path filters to skip unrelated work, and shard large test suites across runners.

When should I use feature flags instead of long-lived branches?

Use feature flags when you want to merge incomplete or risky features to main without releasing them. Flags let you canary releases to a percentage of users and roll back by disabling the flag instead of reverting code.