Merge pull request #5237 from shuujii/use-git-ls-files-instead-of-find-to-avoid-including-.git

Use `git ls-files` instead of `find` in `spell-checker.yml` [ci skip]
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-12-21 08:33:42 +09:00
committed by GitHub
+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