DR-6826 - DOCS : update supabase guide with youtube tutorial video #9041
Workflow file for this run
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: Documentation Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "content/**/*" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "content/**/*" | |
| jobs: | |
| spellcheck: | |
| name: "Docs: Spellcheck" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| name: Check out the code | |
| - uses: actions/setup-node@v4 | |
| name: Setup node | |
| with: | |
| node-version: "22" | |
| - run: npm install -g cspell | |
| name: Install cSpell | |
| - run: cspell --config ./cSpell.json "content/**/*.mdx" --no-progress | |
| name: Run cSpell |