chore(main): release 0.2.0 #33
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: markdown-check | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- main | |
paths: | |
- "**.md" | |
- .github/workflows/markdown-check.yml | |
- .markdownlint.yml | |
- .mlc_config.json | |
- .spelling | |
permissions: read-all | |
jobs: | |
markdownlint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Markdown Lint | |
uses: ruzickap/action-my-markdown-linter@26b4129bf0352527e60b5bd739357af63df1b7bf # v1.2.0 | |
with: | |
exclude: | | |
CHANGELOG.md | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Link Checker | |
uses: ruzickap/action-my-markdown-link-checker@1126c6a5c31df989b4f3b1a8072ad125887b4c47 # v1.3.0 | |
with: | |
exclude: | | |
CHANGELOG.md | |
markdown-spell-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Node.js LTS version | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
- name: Install markdown-spellcheck | |
run: npm install -g markdown-spellcheck | |
- name: Run mdspell | |
run: find . -type f \( -name "*.md" ! -name "CHANGELOG.md" \) -print0 | xargs -0 --max-args=1 --verbose mdspell --ignore-numbers --ignore-acronyms --report --en-gb |