diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml new file mode 100644 index 00000000..afd823f1 --- /dev/null +++ b/.github/workflows/spellcheck.yaml @@ -0,0 +1,19 @@ +name: 'spellcheck' + +on: + pull_request: + branches: + - main + paths-ignore: + - LICENSE + - CODEOWNERS + - '.gitignore' + +jobs: + spellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: matheus23/md-spellcheck-action@v4.2.2 + with: + files-to-check: '*.md'