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 59aa522 commit 6c3954fCopy full SHA for 6c3954f
.github/workflows/check_markdown.yml
@@ -0,0 +1,31 @@
1
+name: Check Markdown
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches: '*'
9
10
+jobs:
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
17
+ - uses: actions/checkout@v2
18
+ with:
19
+ submodules: true
20
+ fetch-depth: 1
21
22
+ - uses: actions/setup-node@v2
23
24
+ node-version: '10'
25
26
+ - name: Install dependencies and checkmarkdown
27
+ run: |
28
+ npm install `cat npm-requirements.txt`
29
+ remark . --frail
30
31
0 commit comments