-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
54 lines (50 loc) · 1.36 KB
/
md-lint-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Markdown Lint Check
on:
pull_request:
branches:
- master
paths:
- '**.md'
- '!.github/**'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Save PR number
env:
PR_NUMBER: ${{ github.event.number }}
run: echo $PR_NUMBER > pr_number
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install -g markdownlint-cli
- name: Run linter
run: markdownlint . --config .github/configs/.markdownlint.json --ignore node_modules --ignore .github &> lint.txt
- name: Show Linting Issues
if: failure()
run: |
cat lint.txt
sed -i 's/```/triple-backtick/g' lint.txt
- name: Create artifact for comment
if: failure()
run: |
echo "**The following issues were identified:**" > artifact.txt
# Copy to generic name for commenting
cat lint.txt | tee -a artifact.txt
- name: Upload list of issues
if: failure()
uses: actions/upload-artifact@v4
with:
name: artifact
path: |
artifact.txt
pr_number