spider-check #881
This file contains 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: spider-check | |
on: | |
# Once a week on Friday at 00:00 | |
schedule: | |
- cron: '0 0 * * 5' | |
# Or manually | |
workflow_dispatch: | |
# Or when developing this workflow | |
push: | |
paths: | |
- .github/workflows/spider-check.yaml | |
pull_request: | |
paths: | |
- .github/workflows/spider-check.yaml | |
jobs: | |
spider-check: | |
if: ${{ github.repository_owner == 'qunitjs' }} # skip on forks | |
runs-on: ubuntu-latest | |
env: | |
# Site address to crawl | |
# | |
# Example: | |
# - https://example.org | |
# - https://example.github.io/ | |
# - https://example.github.io/my-project/ | |
MY_SITE: https://qunitjs.com | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run hydra-link-checker | |
run: | | |
curl -O https://raw.githubusercontent.com/jquery/hydra-link-checker/v2.0.0/hydra.py | |
python3 hydra.py "$MY_SITE" --config build/hydra-config.json |