Add support for nested dashboard routes #113
Workflow file for this run
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: 'Check spelling' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
spellcheck: # run the action | |
name: Spell Check | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
permissions: | |
contents: read | |
pull-requests: write # Allows the action to comment on PRs | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: streetsidesoftware/cspell-action@v6 | |
with: | |
# Inline PR comments instead of annotations | |
inline: warning | |
# Fail on warnings | |
strict: true | |
# Show progress | |
verbose: true | |
suggestions: true |