This repository was archived by the owner on Jan 28, 2026. It is now read-only.
release test #23
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Split-Module GUI Test Pipeline | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| # ─────────────────────────────────────────── | |
| # 1. Playwright tests → artifacts only | |
| # ─────────────────────────────────────────── | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| - run: npm install | |
| # Playwright only (dashboard off here) | |
| - name: GUI Test – Playwright only | |
| uses: DigitalProductInnovationAndDevelopment/Code-Reviews-of-GUI-Tests@v1.0.12 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| mode: test-only | |
| test-files: tests | |
| enable-dashboard: 'false' | |
| enable-github-pages: 'false' | |
| # Build correct summary JSON — reads *after* action moved metrics | |
| - name: Build playwright-summary-pr.json | |
| run: | | |
| node - <<'EOF' | |
| const fs = require('fs'); | |
| const rpt = JSON.parse(fs.readFileSync('artifacts/playwright-metrics.json','utf8')); | |
| const out = { | |
| total: rpt.stats.tests, | |
| passed: rpt.stats.passed, | |
| failed: rpt.stats.failed, | |
| skipped: rpt.stats.skipped, | |
| duration: rpt.stats.duration, | |
| pass_rate: +(rpt.stats.tests ? (rpt.stats.passed / rpt.stats.tests) * 100 : 0).toFixed(2) | |
| }; | |
| fs.writeFileSync('artifacts/playwright-summary-pr.json', JSON.stringify(out, null, 2)); | |
| EOF | |
| # Upload three artifacts for dashboard job | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-summary | |
| path: artifacts/playwright-summary-pr.json | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-metrics | |
| path: artifacts/playwright-metrics.json | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-report | |
| path: artifacts/pr-report/ | |
| # ─────────────────────────────────────────── | |
| # 2. ESLint / Prettier → lint-summary.json | |
| # ─────────────────────────────────────────── | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| - run: npm install | |
| - name: GUI Test – Lint only | |
| uses: DigitalProductInnovationAndDevelopment/Code-Reviews-of-GUI-Tests@v1.0.12 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| mode: lint-only | |
| # Upload lint summary for dashboard | |
| - name: Upload lint-summary.json | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: lint-summary | |
| path: artifacts/lint-summary.json | |
| # ─────────────────────────────────────────── | |
| # 3. Dashboard / PR comment / Pages deploy | |
| # ─────────────────────────────────────────── | |
| dashboard: | |
| needs: [ test, lint ] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.review.outputs.dashboard-url }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install npm only if needed | |
| run: | | |
| if [ -f package.json ]; then | |
| npm ci 2>/dev/null || npm install | |
| fi | |
| # Download all artifacts | |
| - uses: actions/download-artifact@v4 | |
| with: { name: playwright-summary, path: dl } | |
| - uses: actions/download-artifact@v4 | |
| with: { name: playwright-metrics, path: dl } | |
| - uses: actions/download-artifact@v4 | |
| with: { name: playwright-report, path: dl/pr-report } | |
| - uses: actions/download-artifact@v4 | |
| with: { name: lint-summary, path: dl } | |
| # Build dashboard (flow-chart + checklist inside) | |
| - id: review | |
| name: Dashboard / PR comment / Pages deploy | |
| uses: DigitalProductInnovationAndDevelopment/Code-Reviews-of-GUI-Tests@v1.0.12 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| mode: dashboard-only | |
| custom-artifacts-path: dl | |
| enable-github-pages: 'true' |