Skip to content

Commit 5b3af25

Browse files
author
Philip Laine
committed
Add spellcheck gh action
1 parent e3a22b2 commit 5b3af25

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
1-
name: PR Validation
2-
1+
name: Markdownlint
32
on: pull_request
4-
53
jobs:
64
build:
75
name: markdownlint-cli
86
runs-on: ubuntu-latest
9-
107
steps:
118
- name: Checkout Code
129
uses: actions/checkout@v2
1310
with:
1411
fetch-depth: 0
15-
1612
- uses: actions/setup-node@v2
1713
with:
1814
node-version: "16"
19-
- run: npm install markdownlint-cli
20-
- run: make markdownlint
15+
- name: Install markdownlint
16+
run: npm install markdownlint-cli
17+
- name: Run markdownlint
18+
run: make markdownlint

.github/workflows/spellcheck.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Spellcheck
2+
on: pull_request
3+
jobs:
4+
build:
5+
name: spellcheck
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout Code
9+
uses: actions/checkout@v2
10+
with:
11+
fetch-depth: 0
12+
- name: Run spellcheck
13+
uses: rojopolis/spellcheck-github-actions@0.16.0

0 commit comments

Comments
 (0)