返回 reveal.js
spellcheck.yml
根目录 / .github / workflows / spellcheck.yml
1 # Codespell configuration is within .codespellrc
2 ---
3 name: Spellcheck
4
5 on:
6 push:
7 branches: [master]
8 pull_request:
9 branches: [master]
10
11 permissions:
12 contents: read
13
14 jobs:
15 codespell:
16 name: Check for spelling errors
17 runs-on: ubuntu-latest
18
19 steps:
20 - name: Checkout
21 uses: actions/checkout@v4
22 - name: Codespell
23 uses: codespell-project/actions-codespell@v2
24 with:
25 skip: ./.git,./dist,package-lock.json,*.css,.codespellrc,./react/
26
26 lines YAML