Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

chore(main): release 0.3.0 #297

chore(main): release 0.3.0

chore(main): release 0.3.0 #297

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@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.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 {} \;