chore(repo): replace stale repository URLs with canonical location (#260) #67
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: Docs link check | |
| on: | |
| push: | |
| paths: | |
| - '**.md' | |
| - 'scripts/check-links.js' | |
| - '.github/workflows/docs-links.yml' | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| - 'scripts/check-links.js' | |
| - '.github/workflows/docs-links.yml' | |
| permissions: | |
| # Los cuatro workflows solo leen el repo: clonan, instalan y corren | |
| # tests. Ninguno hace push, ni comenta, ni publica, ni toca secrets. | |
| contents: read | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Check local markdown links | |
| run: node scripts/check-links.js |