2023-02-20 06:37:28 +00:00
|
|
|
name: Markdown Linting
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 08:42:23 +00:00
|
|
|
- 'renovate/**'
|
2023-02-20 06:37:28 +00:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/lint-md.yml'
|
2023-06-01 00:25:13 +00:00
|
|
|
- '.nvmrc'
|
2023-02-20 06:37:28 +00:00
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.md'
|
|
|
|
- '!AUTHORS.md'
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/lint-md.yml'
|
2023-06-01 00:25:13 +00:00
|
|
|
- '.nvmrc'
|
2023-02-20 06:37:28 +00:00
|
|
|
- '.prettier*'
|
|
|
|
- '**/*.md'
|
|
|
|
- '!AUTHORS.md'
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2023-09-11 08:41:26 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-02-20 06:37:28 +00:00
|
|
|
|
2023-10-24 11:43:24 +00:00
|
|
|
- name: Set up Javascript environment
|
|
|
|
uses: ./.github/actions/setup-javascript
|
2023-02-20 06:37:28 +00:00
|
|
|
|
|
|
|
- name: Prettier
|
2023-06-01 00:25:13 +00:00
|
|
|
run: yarn lint:md
|