Skip to content

Commit 73be7f5

Browse files
committed
Add markdownlint
1 parent 7d992b4 commit 73be7f5

File tree

3 files changed

+551
-1
lines changed

3 files changed

+551
-1
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@ env:
1515
CONFIGURATION: Release
1616

1717
jobs:
18+
lint-markdown:
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- name: Check out repository
23+
uses: actions/[email protected]
24+
25+
- name: Install Node
26+
uses: actions/[email protected]
27+
with:
28+
node-version: 18
29+
30+
- uses: xt0rted/[email protected]
31+
32+
- run: npm ci
33+
34+
- run: npm test
35+
1836
build:
1937
runs-on: ${{ matrix.os }}
2038

@@ -73,7 +91,9 @@ jobs:
7391
path: ./coverage/*.trx
7492

7593
integration:
76-
needs: build
94+
needs:
95+
- build
96+
- lint-markdown
7797

7898
runs-on: ${{ matrix.os }}
7999

0 commit comments

Comments
 (0)