We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de0565 commit d926f6dCopy full SHA for d926f6d
.github/workflows/markdown.yml
@@ -0,0 +1,26 @@
1
+name: Markdown Lint
2
+on:
3
+ push:
4
+ paths:
5
+ - README.md
6
+ branches:
7
+ - arc-dev
8
+ - arc-releases
9
+ pull_request:
10
11
12
13
14
15
+jobs:
16
+ markdown:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - uses: actions/setup-node@v1
21
+ with:
22
+ node-version: '10'
23
+ - name: Install markdownlint
24
+ run: npm install -g markdownlint-cli
25
+ - name: Run Markdownlint
26
+ run: markdownlint ${GITHUB_WORKSPACE}/README.md -c ${GITHUB_WORKSPACE}/.markdownlint.yml
.markdownlint.yml
@@ -0,0 +1 @@
+MD013: false
0 commit comments