This repository was archived by the owner on Aug 30, 2025. It is now read-only.
Ensure that crawlers don't pick up the API and muddy our search results. #21
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: Spellcheck | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| spellcheck: | |
| name: Spelling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| show-progress: false | |
| - uses: codespell-project/actions-codespell@master | |
| with: | |
| ignore_words_file: .codespellignore | |
| path: content/ | |
| skip: content/js |