← スキル一覧に戻る

ci-cd-pipeline
by lovedragonball
⭐ 32🍴 4📅 2026年1月17日
SKILL.md
name: ci-cd-pipeline description: Automated CI/CD pipeline setup with GitHub Actions, deployment strategies, and automation workflows. Use for build automation, testing, and deployment.
🚀 CI/CD Pipeline Skill
GitHub Actions Workflows
Basic CI Workflow
# .github/workflows/ci.yml
name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
Deploy to Vercel
# .github/workflows/deploy.yml
name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: amondnet/vercel-action@v25
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
vercel-args: '--prod'
Deployment Strategies
| Strategy | Description | Risk | Rollback |
|---|---|---|---|
| Rolling | Replace instances gradually | Low | Slow |
| Blue-Green | Switch between environments | Low | Fast |
| Canary | Route % traffic to new version | Medium | Fast |
| Recreate | Stop old, start new | High | Slow |
Environment Management
Secrets Setup
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
API_KEY: ${{ secrets.API_KEY }}
# Environment-specific
jobs:
deploy-staging:
environment: staging
deploy-production:
environment: production
needs: deploy-staging
Branch Protection
on:
push:
branches:
- main # Production
- develop # Staging
- 'feature/*' # Feature branches
Docker Build Pipeline
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: user/app:latest
Pipeline Checklist
- Lint code
- Run unit tests
- Run integration tests
- Build application
- Security scan (SAST)
- Deploy to staging
- Run E2E tests
- Deploy to production
- Health check
- Notify team
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です