Skip to content

chore(deps): update dependency bleachbit/bleachbit to v4.9.0 #250

chore(deps): update dependency bleachbit/bleachbit to v4.9.0

chore(deps): update dependency bleachbit/bleachbit to v4.9.0 #250

name: markdown-mdspell
on:
push:
branches-ignore:
- main
paths:
- "**.md"
- .github/workflows/markdown-mdspell.yml
- .spelling
permissions: read-all
jobs:
markdown-mdspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Install Node.js
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
# renovate: datasource=github-tags depName=nodejs/node versioning=node
node-version: 22
- name: Install markdown-spellcheck
run: npm install -g markdown-spellcheck
- name: Run mdspell
run: |
set -euxo pipefail
find . -type f \( -name "*.md" ! -name "CHANGELOG.md" \) -print0 | xargs -0 --max-args=1 mdspell --ignore-numbers --ignore-acronyms --report --en-gb {} \;