name: CI / CD Pipeline on: push: branches: [main, develop] pull_request: workflow_dispatch: jobs: # ============================================================ # JOB 1 : CI & Quality Gate # ============================================================ build: runs-on: ubuntu-latest timeout-minutes: 15 steps: - name: đŸ“Ĩ Checkout uses: actions/checkout@v4 # ── [1] pnpm ā¸•āš‰ā¸­ā¸‡ā¸Ąā¸˛ā¸āšˆā¸­ā¸™ setup-node āš€ā¸Ēā¸Ąā¸­ ──────────────── - name: âš™ī¸ Install pnpm uses: pnpm/action-setup@v4 # version ā¸­āšˆā¸˛ā¸™ā¸ˆā¸˛ā¸ packageManager field āšƒā¸™ package.json ā¸­ā¸ąā¸•āš‚ā¸™ā¸Ąā¸ąā¸•ā¸´ - name: âš™ī¸ Setup Node uses: actions/setup-node@v4 with: node-version: 20 # ā¸Ĩ⏚ cache: "pnpm" ⏭⏭⏁ — āšƒā¸Šāš‰ volume mount ā¸šā¸™ runner āšā¸—ā¸™ # ── [2] ⏊ā¸ĩāš‰ store āš„ā¸›ā¸—ā¸ĩāšˆ volume ⏗ā¸ĩāšˆ mount āš„ā¸§āš‰ ───────────── - name: 🔧 Set pnpm store path run: pnpm config set store-dir /root/.local/share/pnpm - name: đŸ“Ļ Install deps run: pnpm install --frozen-lockfile - name: 🧹 Lint run: pnpm lint - name: 🔍 Security & quality checks run: | # UUID misuse check (ADR-019) if grep -r --include="*.ts" --include="*.tsx" --exclude-dir={node_modules,.next,.agents,.git,scripts,test,__tests__} "parseInt(.*uuid" .; then echo "❌ UUID misuse detected" exit 1 fi # console.log check (Clean Code) if grep -r --include="*.ts" --include="*.tsx" --exclude-dir={node_modules,.next,.agents,.git,scripts,test,__tests__} "console.log" .; then echo "❌ console.log detected" exit 1 fi # ── [3] āšā¸ĸ⏁ step — āš€ā¸Ģāš‡ā¸™ failure āš„ā¸”āš‰ā¸Šā¸ąā¸”ā¸‚ā¸ļāš‰ā¸™ ────────────── - name: đŸ§Ē Test backend run: pnpm test working-directory: backend - name: đŸ§Ē Test frontend run: pnpm test run working-directory: frontend # ============================================================ # JOB 2 : Deploy — Trigger Blue-Green on QNAP # ============================================================ deploy: needs: build if: github.ref == 'refs/heads/main' runs-on: self-hosted steps: - name: īŋŊ Checkout uses: actions/checkout@v4 - name: 🔐 Setup SSH and Deploy to QNAP run: | # Ensure sshpass is available (install if needed) if ! command -v sshpass &> /dev/null; then apt-get update -qq && apt-get install -y -qq sshpass fi # Create remote deployment script REMOTE_SCRIPT=$(cat << 'SCRIPT_EOF' set -e export PATH="/share/CACHEDEV1_DATA/.qpkg/container-station/bin:/opt/bin:/usr/local/bin:/usr/bin:/bin:$PATH" echo "==========================================" echo "Starting QNAP Deployment Process" echo "==========================================" # Verify Docker is accessible if ! docker version > /dev/null 2>&1; then echo "✗ Docker not accessible. Check Container Station." exit 1 fi echo "✓ Docker accessible" # Sync scripts first echo "📂 Syncing deployment scripts..." cd /share/np-dms/app/source/lcbp3 # Check if directory exists if [ ! -d ".git" ]; then echo "✗ Git repository not found at expected path" exit 1 fi git fetch origin main git reset --hard origin/main echo "✓ Code synced" # Ensure scripts are executable chmod +x scripts/deploy.sh scripts/rollback.sh 2>/dev/null || true mkdir -p /share/np-dms/app/logs # Note: Docker build cache is preserved for faster builds # Only prune cache manually when needed: docker builder prune -f echo "🚀 Executing deployment..." ./scripts/deploy.sh echo "✓ Deployment completed successfully" SCRIPT_EOF ) # Retry logic for SSH connection max_attempts=3 attempt=1 while [ $attempt -le $max_attempts ]; do echo "🚀 Deployment attempt $attempt/$max_attempts..." if echo "$REMOTE_SCRIPT" | sshpass -p "${{ secrets.PASSWORD }}" ssh -o StrictHostKeyChecking=no \ -o ConnectTimeout=60 \ -o ServerAliveInterval=30 \ -o ServerAliveCountMax=60 \ -o TCPKeepAlive=yes \ -p ${{ secrets.PORT }} ${{ secrets.USERNAME }}@${{ secrets.HOST }} 'bash -s'; then echo "✅ Deployment successful!" exit 0 else echo "âš ī¸ Attempt $attempt failed" if [ $attempt -lt $max_attempts ]; then echo "âŗ Retrying in 10 seconds..." sleep 10 fi fi attempt=$((attempt + 1)) done echo "❌ All deployment attempts failed" exit 1 timeout-minutes: 20