feat(nav): give hermiq a Reports page, from the report it already had #1483
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: l10n | |
| on: | |
| push: | |
| branches: [main, development] | |
| pull_request: | |
| branches: [main, beta, development] | |
| permissions: | |
| contents: read | |
| jobs: | |
| l10n: | |
| name: l10n coverage (en.json) | |
| runs-on: ubuntu-latest | |
| # Observed fleet-wide: median 0.1 min, max 1.1 min (n=193). Deliberately loose. | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| # check-l10n.js uses only Node built-ins (fs/path) — no npm ci needed. | |
| - name: Check l10n coverage | |
| run: npm run test:l10n |