devops-cicd
Installation
SKILL.md
DevOps CI/CD Standards
This skill provides CI/CD pipeline best practices.
When to Use
- Use this skill when creating GitHub Actions workflows
- Use this skill when setting up GitLab CI pipelines
- Use this skill when optimizing build/deploy processes
Instructions
1. Pipeline Stages
The pipeline must follow this strict order:
- Lint & Static Analysis: Fail fast if code style violates rules.
- Test: Run Unit Tests. (Block merge if failed).
- Build: Verify the application builds successfully.
- Deploy (CD): Only on
mainordevelopbranches.