Use git ls-files instead of find in spell-checker.yml [ci skip]

To avoid including `.git` directory.
This commit is contained in:
KOBAYASHI Shuji
2020-12-20 22:50:47 +09:00
parent a65c33c487
commit 01a6cdb882
+1 -1
View File
@@ -14,4 +14,4 @@ jobs:
wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: 🌶️ Misspell
run: |
find . -type f | xargs ./misspell -error
git ls-files --empty-directory | xargs ./misspell -error