Skip to content

Fix spellcheck workflow #480

Fix spellcheck workflow

Fix spellcheck workflow #480

Workflow file for this run

name: Spellcheck

Check failure on line 1 in .github/workflows/spelling.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/spelling.yml

Invalid workflow file

(Line: 30, Col: 14): Unexpected value '', (Line: 31, Col: 9): Unexpected value 'files'
on:
push:
branches:
- "**"
paths:
- "**/routes/**"
- "**.mdx"
pull_request:
branches:
- "**"
paths:
- "**/routes/**"
- "**.mdx"
permissions:
contents: read
jobs:
spellcheck:
name: GitHub Spellcheck
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Check Changed Files
uses: tj-actions/changed-files@v45
id: changed_files
with:
files: |
src/routes/**/*.mdx
- name: Run Spellcheck
id: spellcheck
uses: rojopolis/spellcheck-github-actions@0.54.0
with:
config_path: .github/actions/spelling/spellcheck.yml
task_name: Markdown
source_files: ${{ steps.changed_files.outputs.all_changed_files }}