Skip to content

Commit d02b4f4

Browse files
Merge pull request #746 from nodejs/markdown-link-check
Add markdown-link-check test on Travis CI
2 parents 16a8690 + 3c25cdf commit d02b4f4

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ stages:
2222

2323
jobs:
2424
include:
25+
- stage: Test
26+
env:
27+
- TEST: Markdown link check
28+
language: node_js
29+
node_js:
30+
- lts/*
31+
install:
32+
- npm i -g markdown-link-check
33+
script:
34+
- find . -name "*.md" -exec markdown-link-check {} \;
35+
2536
- stage: Test
2637
env:
2738
- TEST: Editor Config check

travis.yml.template

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,17 @@ stages:
2020

2121
jobs:
2222
include:
23+
- stage: Test
24+
env:
25+
- TEST: Markdown link check
26+
language: node_js
27+
node_js:
28+
- lts/*
29+
install:
30+
- npm i -g markdown-link-check
31+
script:
32+
- find . -name "*.md" -exec markdown-link-check {} \;
33+
2334
- stage: Test
2435
env:
2536
- TEST: Editor Config check

0 commit comments

Comments
 (0)