docs: SIP-03 migration path for mnemonic-only and hardware wallets #10
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: SEO audit | |
| # Deterministic SEO + page-structure audit on every PR — the free, no-AI | |
| # replacement for Mintlify's "Audit SEO metadata" workflow. Walks docs.json so | |
| # it only checks published pages. Fails only on missing title/description | |
| # (regressions); length/heading issues are warnings. See scripts/audit-seo.mjs. | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Audit SEO metadata and structure | |
| run: node scripts/audit-seo.mjs |