summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/spell-checker.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/spell-checker.yml b/.github/workflows/spell-checker.yml
new file mode 100644
index 000000000..307617c4a
--- /dev/null
+++ b/.github/workflows/spell-checker.yml
@@ -0,0 +1,17 @@
+name: ๐Ÿ’Ž Spellchecker
+
+on: [pull_request]
+
+jobs:
+ misspell:
+ name: ๐Ÿงน Check Spelling
+ runs-on: ubuntu-latest
+ steps:
+ - name: ๐Ÿ’ Check Out
+ uses: actions/checkout@v2
+ - name: ๐Ÿ… Install
+ run: |
+ wget -O - -q https://git.io/misspell | sh -s -- -b .
+ - name: ๐ŸŒถ๏ธ Misspell
+ run: |
+ find . -type f | xargs ./misspell -error