Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

chore(deps): lock file maintenance #72

chore(deps): lock file maintenance

chore(deps): lock file maintenance #72

Workflow file for this run

---
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@919d3735df9bbc094d206521a774133ec8f3c4ca # v1.1.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