Skip to content

Commit e775d04

Browse files
committed
Lint markdown files in the SDK
1 parent d27a9b1 commit e775d04

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Run SDK Tests
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, synchronize]
6+
paths:
7+
- 'packages/sdk/**/*.md'
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v3
16+
17+
- name: Lint markdown files
18+
uses: DavidAnson/markdownlint-cli2-action@v17
19+
with:
20+
globs: '**/*.md'

0 commit comments

Comments
 (0)