This repository has been archived by the owner on Jan 30, 2025. It is now read-only.
chore(deps): update ruzickap/action-my-markdown-linter action to v1.2.0 #33
Workflow file for this run
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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- 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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Link Checker | |
uses: ruzickap/action-my-markdown-link-checker@e7e8635735a15a86b081f8255022bcc251cc9003 # v1.2.0 | |
with: | |
exclude: | | |
CHANGELOG.md | |
markdown-spell-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Install Node.js LTS version | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
- 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 |