Skip to content

Add support for nested dashboard routes #113

Add support for nested dashboard routes

Add support for nested dashboard routes #113

Workflow file for this run

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