reusable-misspell-check.yml 458 B

123456789101112131415161718192021
  1. name: Reusable - Misspell check
  2. on:
  3. workflow_call:
  4. jobs:
  5. misspell-check:
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v3
  9. - name: Install misspell
  10. run: |
  11. curl -L -o ./install-misspell.sh https://git.io/misspell
  12. sh ./install-misspell.sh
  13. - name: Run misspell
  14. run: |
  15. find . -type f \
  16. -not -path './licenses/*' \
  17. | xargs bin/misspell -error