Merge tag 'v4.2.6' into merge-v4.2 #3
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 Linting | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
- 'renovate/**' | |
paths: | |
- '.github/workflows/lint-md.yml' | |
- '.nvmrc' | |
- '.prettier*' | |
- '**/*.md' | |
- '!AUTHORS.md' | |
- 'package.json' | |
- 'yarn.lock' | |
pull_request: | |
paths: | |
- '.github/workflows/lint-md.yml' | |
- '.nvmrc' | |
- '.prettier*' | |
- '**/*.md' | |
- '!AUTHORS.md' | |
- 'package.json' | |
- 'yarn.lock' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version-file: '.nvmrc' | |
- name: Install all yarn packages | |
run: yarn --frozen-lockfile | |
- name: Prettier | |
run: yarn lint:md |