spelling.yml 524 B

1234567891011121314151617181920212223242526
  1. name: Spellcheck
  2. on:
  3. workflow_run:
  4. workflows: [Build slim packages]
  5. types:
  6. - completed
  7. jobs:
  8. spellcheck_schema:
  9. runs-on: ubuntu-latest
  10. strategy:
  11. fail-fast: true
  12. steps:
  13. - uses: actions/checkout@v2
  14. - uses: actions/download-artifact@v2
  15. with:
  16. name: emqx-24.1.5-4-ubuntu20.04
  17. workflow: build_slim_packages.yaml
  18. path: .
  19. - name: Run spellcheck
  20. run: |
  21. tar zxf *.tar.gz
  22. find . -name schema.json -exec scripts/spellcheck \{\} \;