# Cicd

> CI/CD pipeline with GitHub Actions. Automated testing, building, deployment. PR checks, auto-merge, release workflow. Don't use for Jenkins or GitLab CI.

- Skill: `neuron-one/cicd` (Agent Skill)
- Install (CLI): `npx skillmds@latest add neuron-one/cicd`
- Raw SKILL.md: https://api.skillmd.com/api/skills/neuron-one/cicd/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: neuron-one (https://skillmd.com/u/neuron-one)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/neuron-one/cicd

---


# CI/CD with GitHub Actions

## PR Pipeline
1. Lint check
2. Type check (TypeScript)
3. Unit tests
4. Build verification
5. Security scan (optional)

## Deploy Pipeline
1. Build Docker image
2. Push to registry
3. Deploy to server (SSH or webhook)
4. Health check verification
5. Rollback on failure

## Branch Strategy
- main: production, protected
- develop: staging
- feature/*: development branches
- hotfix/*: urgent fixes
