summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/spell-checker.yml
blob: 7e86e0198bedd5899d934ec93db051dbdeb465c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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: |
          git ls-files --empty-directory | xargs ./misspell -error