-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
58 lines (54 loc) · 1.61 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
54
55
56
57
name: Markdown Lint Check
on:
pull_request_target:
branches:
- master
paths:
- '**.md'
- '!.github/**'
permissions:
contents: read
pull-requests: write
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
- 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: Attach Linting Issues
if: failure()
uses: actions/upload-artifact@v3
with:
name: Linting Issues
path: lint.txt
- name: Comment Linting Issues
if: failure()
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const fs = require("fs");
const lintPath = `${process.env.GITHUB_WORKSPACE}/lint.txt`;
const lintString = fs.readFileSync(lintPath).toString().trimEnd();
github.rest.issues.createComment({
issue_number: ${{ github.event.number }},
owner: context.repo.owner,
repo: context.repo.repo,
body: `**The following issues were identified:** \n${lintString}`
})