fix(mobile): keep lesson hubbar on one line on small screens (#10) #6
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: Content validation | |
| # Fails a PR (or push to main) if any indexable page is missing required SEO | |
| # tags, an interview panel uses an invalid data-level, a JSON-LD block is | |
| # malformed, or sitemap.xml is out of sync with the files on disk. | |
| on: | |
| push: | |
| branches: [main] | |
| paths: ['docs/**', 'scripts/validate-content.js', '.github/workflows/content-validation.yml'] | |
| pull_request: | |
| paths: ['docs/**', 'scripts/validate-content.js', '.github/workflows/content-validation.yml'] | |
| jobs: | |
| content: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| # Zero dependencies — the validator uses only Node built-ins, so no install step. | |
| - run: node scripts/validate-content.js |