Check Links #190
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: Check Links | |
| on: | |
| workflow_dispatch: # Manual checks | |
| schedule: | |
| - cron: 31 13 * * 2 # 13:31 on Tuesdays | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_COLOR: 1 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v6 | |
| env: | |
| FORCE_COLOR: 0 | |
| with: | |
| node-version: 24 # TODO: return to lts/* once 1) we're back to passing runs and 2) 24 is added to package.json | |
| cache: yarn | |
| - run: yarn | |
| - run: node test/valid-doc-links.js |