12345678910111213141516171819202122232425 |
- name: Reusable - Misspell check
- on:
- workflow_call:
- permissions:
- contents: read
- jobs:
- misspell-check:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- - name: Install misspell
- run: |
- curl -L -o install-misspell.sh \
- https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh
- sh ./install-misspell.sh
- - name: Run misspell
- run: |
- find . -type f \
- -not -path './licenses/*' \
- | xargs bin/misspell -error
|