build(deps): bump rui314/setup-mold from 2e332a0b602c2fc65d2d3995941b… #3747
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs PR Spellcheck | |
on: | |
pull_request: | |
branches: | |
- 'dev' | |
files: | |
- '**Doxyfile' | |
- '**docpages/**' | |
- '**/*.h' | |
- '**/documentation-check.yml' | |
push: | |
files: | |
- '**/documentation-check.yml' | |
permissions: | |
contents: read # This only needs to read the contents of a PR. | |
jobs: | |
docs: | |
name: Check Documentation Spelling | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- name: Checkout D++ | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Check docs spelling | |
run: npx -y cspell lint --language-id=cpp --no-progress --no-summary --show-context --show-suggestions --relative --color docpages/*.md include/dpp/*.h |