chore(deps-dev): bump vnu-jar from 23.4.11 to 24.10.17 #502
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: Markdownlint | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/markdownlint-problem-matcher.json" | |
- ".github/workflows/markdownlint.yml" | |
- ".markdownlint.json" | |
- "package*.json" | |
- "**/*.md" | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
paths: | |
- ".github/workflows/markdownlint-problem-matcher.json" | |
- ".github/workflows/markdownlint.yml" | |
- ".markdownlint.json" | |
- "package*.json" | |
- "**/*.md" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Run Markdownlint | |
run: | | |
echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json" | |
npm run lint:md |