Skip to content

Commit 14b4da7

Browse files
committed
added CI pipelines
1 parent 3941c16 commit 14b4da7

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

.github/workflows/linkcheck.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Check Markdown Links
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
linkcheck:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: "20"
13+
- run: npm install -g markdown-link-check
14+
- run: find . -name "*.md" -exec markdown-link-check {} \;

.github/workflows/markdownlint.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Markdown Lint
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
markdownlint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: "20"
13+
- run: npm install -g markdownlint-cli
14+
- run: markdownlint "**/*.md" --ignore node_modules

.github/workflows/spellcheck.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Spell Check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
spellcheck:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: "20"
13+
- run: npm install -g cspell
14+
- run: cspell "**/*.md"

0 commit comments

Comments
 (0)