cloudflare/pint
Publicmirrored from https://github.com/cloudflare/pintAvailable
.github/workflows/docs.yml
28lines · modecode
| 1 | name: Spellcheck |
| 2 | on: [pull_request] |
| 3 | |
| 4 | jobs: |
| 5 | spellcheck: |
| 6 | name: Spellcheck |
| 7 | runs-on: ubuntu-latest |
| 8 | steps: |
| 9 | - name: Check out code |
| 10 | uses: actions/checkout@v3 |
| 11 | |
| 12 | - name: Spellcheck |
| 13 | uses: rojopolis/spellcheck-github-actions@0.30.0 |
| 14 | with: |
| 15 | config_path: .github/spellcheck/config.yml |
| 16 | |
| 17 | markdown: |
| 18 | name: Markdownlint |
| 19 | runs-on: ubuntu-latest |
| 20 | steps: |
| 21 | - name: Check out code |
| 22 | uses: actions/checkout@v3 |
| 23 | |
| 24 | - name: Markdownlint |
| 25 | uses: nosborn/github-action-markdown-cli@v3.3.0 |
| 26 | with: |
| 27 | files: . |
| 28 | config_file: ".markdownlint.json" |
| 29 | |