# Gitea Actions CI/CD - build + deploy SOLUTION_ERP to IIS on same VPS. # Trigger: push to main, or manual dispatch. # # Self-hosted Windows runner on VPS (shared with VIETREPORT). Runner has: # - git, .NET 10 SDK, Node 20, IIS # - Can deploy locally (no WinRM needed) # # Secrets required in Gitea repo settings: # - JWT_SECRET (64+ chars random) # - DB_CONNECTION (full connection string with vrapp password) name: Deploy SOLUTION_ERP # Path filter — skip CI khi commit chỉ docs/MD/skill (~110s saved per docs commit). # Commit MD-only như "Docs: chốt session" sẽ KHÔNG trigger workflow. # Lưu ý: nếu cùng 1 commit thay đổi cả MD + code → vẫn trigger (đúng behavior). on: push: branches: [main] paths-ignore: - 'docs/**' - '**/*.md' - '.claude/skills/**' - '.claude/agent-memory/**' - '.claude/workflows/runs/**' - '.gitignore' - 'scripts/**.md' workflow_dispatch: jobs: build-deploy: runs-on: windows-latest steps: # Manual checkout thay vì `uses: actions/checkout@v4` — tránh phụ thuộc # github.com (act_runner mỗi run đều `git fetch` để check update action, # khi VPS → github.com TCP timeout 21s thì toàn job fail trước khi tới # test gate). Gitea internal network luôn ổn định, nên clone trực tiếp. # Token `${{ github.token }}` (Gitea cũng dùng tên này) tự sẵn cho job. - name: Checkout (manual git, bypass github.com) shell: powershell run: | git config --global --add safe.directory '*' git init -q git remote add origin "https://gitea-actions:${{ github.token }}@git.baocaogiaoduc.vn/${{ github.repository }}.git" # Fetch ref (branch) thay vì SHA — không cần Gitea allow SHA fetch. # Depth 30 đủ buffer nếu main đã commit thêm sau khi job pickup. $ref = "${{ github.ref }}" if ($ref -like "refs/heads/*") { $ref = $ref.Substring(11) } git fetch --depth=30 origin $ref git checkout --quiet "${{ github.sha }}" git log -1 --oneline - name: Show tool versions shell: powershell run: | & 'C:\Program Files\dotnet\dotnet.exe' --version & 'C:\Program Files\nodejs\node.exe' --version & 'C:\Program Files\nodejs\npm.cmd' --version # ============== TEST GATE ============== # Run tests TRƯỚC build/publish/deploy. Fail → exit non-zero → no deploy. # Phase 1: Domain (54 test policy state machine). # Phase 2: Infrastructure (17 test code generators format/sequence/year scope). - name: Run unit tests (Domain) shell: powershell run: | & 'C:\Program Files\dotnet\dotnet.exe' test tests/SolutionErp.Domain.Tests/SolutionErp.Domain.Tests.csproj ` --configuration Release ` --logger "trx;LogFileName=domain-tests.trx" ` --results-directory test-results if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } - name: Run integration tests (Infrastructure - SQLite in-memory) shell: powershell run: | & 'C:\Program Files\dotnet\dotnet.exe' test tests/SolutionErp.Infrastructure.Tests/SolutionErp.Infrastructure.Tests.csproj ` --configuration Release ` --logger "trx;LogFileName=infra-tests.trx" ` --results-directory test-results if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # Upload test results — bỏ vì `actions/upload-artifact@v4` cũng phụ thuộc # github.com fetch (cùng vấn đề như actions/checkout). TRX file vẫn save # local trong workspace `test-results/` cho debug khi cần. - name: List test results (local debug) if: always() shell: powershell run: | if (Test-Path test-results) { Get-ChildItem test-results -Recurse | Format-Table FullName, Length } else { Write-Host "No test-results directory." } # ============== BUILD ============== - name: Build backend shell: powershell run: | & 'C:\Program Files\dotnet\dotnet.exe' restore SolutionErp.slnx & 'C:\Program Files\dotnet\dotnet.exe' publish src/Backend/SolutionErp.Api/SolutionErp.Api.csproj ` --configuration Release ` --output out/api ` --runtime win-x64 ` --self-contained false # FE build — `npm ci` theo package-lock.json ĐÃ COMMIT (gotcha #92, S191). # # 🔴 KHÔNG được xoá package-lock.json. Bản trước làm đúng thế: # Remove-Item node_modules, package-lock.json -Force ; npm install # ⇒ mỗi run resolve LẠI cả cây theo semver range (react ^19.2.5, vite ^8.0.9…) # ⇒ cùng một commit build ra bundle KHÁC NHAU tuỳ registry tại thời điểm chạy # ⇒ đã 2 lần ship bundle crash runtime `useState null` (trắng màn prod, S189+S191) # trong khi CI vẫn exit 0 + byte-match CI↔prod + smoke 200 (đo file, không đo chạy). # Lockfile cũ thiếu @microsoft/signalr nên "xoá đi cho lành" từng có vẻ hợp lý — # thuốc đúng là CẬP NHẬT lockfile (đã làm @S191), không phải bỏ nó. # # node_modules vẫn xoá: rolldown native binding phải khớp platform (gotcha #20), # và `npm ci` bản thân nó luôn cài lại từ đầu. - name: Build fe-admin shell: powershell working-directory: fe-admin run: | Remove-Item node_modules -Recurse -Force -ErrorAction SilentlyContinue & 'C:\Program Files\nodejs\npm.cmd' ci --no-audit --no-fund if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # GUARD #92 — React trùng bản = đúng nguyên nhân `useState null` (hook đọc null # vì component render bởi bản React khác bản đang giữ dispatcher). `npm ls react` # in một dòng "deduped" cho mỗi consumer khi cây LÀNH; có bản thứ 2 thì hiện # version thật ở nhánh con. Chặn tại đây rẻ hơn phát hiện bằng trắng màn prod. $tree = & 'C:\Program Files\nodejs\npm.cmd' ls react 2>&1 | Out-String # Lookbehind BẮT BUỘC: thiếu nó thì `lucide-react@1.8.0` khớp như một bản React # ⇒ cây LÀNH cũng FLAG ⇒ CI đỏ vĩnh viễn. Fault-inject 4 ca bắt được lỗi này # trước khi push (cây-lành IM · trùng-bản FLAG · lệch-patch FLAG · cây-hỏng IM). $versions = [regex]::Matches($tree, '(?&1 | Out-String # Lookbehind BẮT BUỘC: thiếu nó thì `lucide-react@1.8.0` khớp như một bản React # ⇒ cây LÀNH cũng FLAG ⇒ CI đỏ vĩnh viễn. Fault-inject 4 ca bắt được lỗi này # trước khi push (cây-lành IM · trùng-bản FLAG · lệch-patch FLAG · cây-hỏng IM). $versions = [regex]::Matches($tree, '(? $($r.StatusCode)" } catch { Write-Warning "API smoke test: $_" }