Merge upstream changes up to 3bf896c973404261f4f7b25c25ea22adb1a85e7d #274
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 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 Javascript environment | |
uses: ./.github/actions/setup-javascript | |
- name: Prettier | |
run: yarn lint:md |