Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2022-01-29 15:42:56 +0300
committerGitHub <noreply@github.com>2022-01-29 15:42:56 +0300
commit640542e6060c365c2e9cad7543822cf3d83045ae (patch)
treeb43ac0c39df075a8e175d6390c92ea01a573cead /.github
parenteb2fda2110e1b4a6375e49035660f993d8436d35 (diff)
Move linkinator to GitHub Actions. (#35573)
* Move linkinator to GitHub Actions. * Remove `docs-linkinator` npm script since it's no longer used
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docs.yml15
1 files changed, 13 insertions, 2 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index cdb2917d9b..d061050615 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -30,5 +30,16 @@ jobs:
- name: Install npm dependencies
run: npm ci
- - name: Test docs
- run: npm run docs
+ - name: Build docs
+ run: npm run docs-build
+
+ - name: Validate HTML
+ run: npm run docs-vnu
+
+ - name: Run linkinator
+ uses: JustinBeckwith/linkinator-action@v1
+ with:
+ paths: _site
+ recurse: true
+ verbosity: error
+ skip: "^(?!http://localhost)"