diff --git a/.github/workflows/spellchecker.yml b/.github/workflows/spellchecker.yml new file mode 100644 index 000000000..a7a9a15b3 --- /dev/null +++ b/.github/workflows/spellchecker.yml @@ -0,0 +1,25 @@ +name: spellchecker + +on: + pull_request: + branches: + - master + +jobs: + misspell: + name: runner / misspell + runs-on: ubuntu-latest + steps: + - name: Check out code. + uses: actions/checkout@v1 + - name: misspell + id: check_for_typos + uses: reviewdog/action-misspell@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + path: "./docs" + locale: "US" + level: "warning" + pattern: | + *.md + *.mdx \ No newline at end of file