Skip to content

Commit c723028

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

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

.github/workflows/pr-validate.yaml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,28 @@
1-
name: PR Validation
2-
1+
name: PR Validate
32
on: pull_request
4-
53
jobs:
6-
build:
4+
spellcheck:
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
14+
markdownlint:
715
name: markdownlint-cli
816
runs-on: ubuntu-latest
9-
1017
steps:
1118
- name: Checkout Code
1219
uses: actions/checkout@v2
1320
with:
1421
fetch-depth: 0
15-
1622
- uses: actions/setup-node@v2
1723
with:
1824
node-version: "16"
19-
- run: npm install markdownlint-cli
20-
- run: make markdownlint
25+
- name: Install markdownlint
26+
run: npm install markdownlint-cli
27+
- name: Run markdownlint
28+
run: make markdownlint

0 commit comments

Comments
 (0)