Building CI/CD Pipelines
Current State
!ls .github/workflows/*.yml .gitlab-ci.yml Jenkinsfile .circleci/config.yml 2>/dev/null || echo 'No CI/CD config found'
Overview
Generate CI/CD pipeline configurations for GitHub Actions, GitLab CI, Jenkins, CircleCI, and Azure DevOps. Produce multi-stage workflows covering linting, testing, building container images, security scanning, and deploying to staging/production with proper gating and rollback mechanisms.
Prerequisites
- Git repository hosted on a supported platform (GitHub, GitLab, Bitbucket, Azure DevOps)
- Container runtime (Docker) if building images
- Target deployment environment credentials configured as pipeline secrets
- Test suite that can run headlessly (
npm test, pytest, go test, etc.)
- Understanding of branching strategy (trunk-based, GitFlow, or environment branches)
Instructions
- Scan the project for existing CI/CD configuration files (
.github/workflows/, .gitlab-ci.yml, Jenkinsfile, .circleci/config.yml)
- Identify the application stack: language, framework, test runner, package manager, and deployment target
- Define pipeline stages:
lint -> test -> build -> security-scan -> deploy-staging -> integration-test -> deploy-production
- Generate the pipeline configuration file with appropriate triggers (push to main, PR events, tags)
- Add caching for dependencies (
node_modules, .pip-cache, Go modules) to reduce build times
- Configure matrix builds for multiple language versions or OS targets where appropriate
- Add secret references for deployment credentials, container registry tokens, and API keys (never hardcode)
- Implement deployment gates: manual approval for production, automated rollback on health check failure
- Add status badges and notifications (Slack, email) for build results
- Validate the pipeline syntax using platform-specific tools (
actionlint, gitlab-ci-lint)
Output
- Pipeline configuration files (
.github/workflows/*.yml, .gitlab-ci.yml, Jenkinsfile)
- Dockerfile for container builds (multi-stage, minimal base image)
- Deployment scripts or Kubernetes manifests referenced by the pipeline
- Environment-specific variable files for staging vs. production
Error Handling
| Error |
Cause |
Solution |
Pipeline triggered but no jobs run |
Trigger conditions (paths, branches) do not match |
Review on: / only: / rules: filters and verify branch names |
Docker build failed: layer cache miss |
Cache key changed or cache storage expired |
Use content-based cache keys (hashFiles('**/package-lock.json')) and verify cache backend |
Secret not found |
Secret name mismatch or not set in pipeline settings |
Check secret names match exactly (case-sensitive) in repository/project settings |
Deploy failed: unauthorized |
Expired or incorrect deployment credentials |
Rotate credentials, update pipeline secrets, and verify IAM role/service account permissions |
Tests pass locally but fail in CI |
Environment differences (OS, node version, timezone) |
Pin runtime versions in pipeline config; use matrix to test across environments |
Examples
- "Create a GitHub Actions workflow for a Node.js app: lint with ESLint, test with Jest, build Docker image, push to ECR, deploy to EKS staging on PR merge."
- "Generate a GitLab CI pipeline with parallel test jobs, SAST scanning, and manual production deployment gate."
- "Build a Jenkins pipeline that runs Python tests in a Docker agent, publishes coverage to SonarQube, and deploys via Terraform."
Resources
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: jeremylongshore-claude-code-plugins-plus-skills-building-cic3description: Building CI/CD Pipelines4---5# Building CI/CD Pipelines67## Current State8!`ls .github/workflows/*.yml .gitlab-ci.yml Jenkinsfile .circleci/config.yml 2>/dev/null || echo 'No CI/CD config found'`910## Overview1112Generate CI/CD pipeline configurations for GitHub Actions, GitLab CI, Jenkins, CircleCI, and Azure DevOps. Produce multi-stage workflows covering linting, testing, building container images, security scanning, and deploying to staging/production with proper gating and rollback mechanisms.1314## Prerequisites1516- Git repository hosted on a supported platform (GitHub, GitLab, Bitbucket, Azure DevOps)17- Container runtime (Docker) if building images18- Target deployment environment credentials configured as pipeline secrets19- Test suite that can run headlessly (`npm test`, `pytest`, `go test`, etc.)20- Understanding of branching strategy (trunk-based, GitFlow, or environment branches)2122## Instructions23241. Scan the project for existing CI/CD configuration files (`.github/workflows/`, `.gitlab-ci.yml`, `Jenkinsfile`, `.circleci/config.yml`)252. Identify the application stack: language, framework, test runner, package manager, and deployment target263. Define pipeline stages: `lint` -> `test` -> `build` -> `security-scan` -> `deploy-staging` -> `integration-test` -> `deploy-production`274. Generate the pipeline configuration file with appropriate triggers (push to main, PR events, tags)285. Add caching for dependencies (`node_modules`, `.pip-cache`, Go modules) to reduce build times296. Configure matrix builds for multiple language versions or OS targets where appropriate307. Add secret references for deployment credentials, container registry tokens, and API keys (never hardcode)318. Implement deployment gates: manual approval for production, automated rollback on health check failure329. Add status badges and notifications (Slack, email) for build results3310. Validate the pipeline syntax using platform-specific tools (`actionlint`, `gitlab-ci-lint`)3435## Output3637- Pipeline configuration files (`.github/workflows/*.yml`, `.gitlab-ci.yml`, `Jenkinsfile`)38- Dockerfile for container builds (multi-stage, minimal base image)39- Deployment scripts or Kubernetes manifests referenced by the pipeline40- Environment-specific variable files for staging vs. production4142## Error Handling4344| Error | Cause | Solution |45|-------|-------|---------|46| `Pipeline triggered but no jobs run` | Trigger conditions (paths, branches) do not match | Review `on:` / `only:` / `rules:` filters and verify branch names |47| `Docker build failed: layer cache miss` | Cache key changed or cache storage expired | Use content-based cache keys (`hashFiles('**/package-lock.json')`) and verify cache backend |48| `Secret not found` | Secret name mismatch or not set in pipeline settings | Check secret names match exactly (case-sensitive) in repository/project settings |49| `Deploy failed: unauthorized` | Expired or incorrect deployment credentials | Rotate credentials, update pipeline secrets, and verify IAM role/service account permissions |50| `Tests pass locally but fail in CI` | Environment differences (OS, node version, timezone) | Pin runtime versions in pipeline config; use `matrix` to test across environments |5152## Examples5354- "Create a GitHub Actions workflow for a Node.js app: lint with ESLint, test with Jest, build Docker image, push to ECR, deploy to EKS staging on PR merge."55- "Generate a GitLab CI pipeline with parallel test jobs, SAST scanning, and manual production deployment gate."56- "Build a Jenkins pipeline that runs Python tests in a Docker agent, publishes coverage to SonarQube, and deploys via Terraform."5758## Resources5960- GitHub Actions: https://docs.github.com/en/actions61- GitLab CI/CD: https://docs.gitlab.com/ee/ci/62- Jenkins Pipeline: https://www.jenkins.io/doc/book/pipeline/63- CI/CD best practices: https://martinfowler.com/articles/continuousIntegration.html6465---66> Converted and distributed by [TomeVault](https://tomevault.io/claim/jeremylongshore) — claim your Tome and manage your conversions.67<!-- tomevault:4.0:skill_md:2026-04-11 -->