From 6a3b9d8827cc6c0a5d3d72bbc1d19ba8ee7d3c91 Mon Sep 17 00:00:00 2001 From: vinckr Date: Thu, 21 Apr 2022 15:24:17 +0200 Subject: [PATCH] feat: spellchecker CI --- .github/workflows/spellchecker.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/spellchecker.yml 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