Continuous Link Linting #2
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: Continuous Link Linting | |
| on: | |
| schedule: | |
| - cron: 0 0 * * * | |
| jobs: | |
| lint-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - uses: ./.github/actions/setup | |
| # we intentionally do not restore cache here | |
| - name: Lint links | |
| run: npm run lint:links |