testing: Update broken-link-checker.yaml to exclude Canva links #2357 #6
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: Spellcheck | |
on: | |
push: | |
branches: | |
- main # Adjust this branch name if needed | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
spellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install codespell | |
run: pip install codespell | |
- name: Run spellcheck | |
run: codespell --quiet-level=2 --check-filenames -- ./**/*.json |