Skip to content

Commit

Permalink
Move linkinator to GitHub Actions. (#35573)
Browse files Browse the repository at this point in the history
* Move linkinator to GitHub Actions.

* Remove `docs-linkinator` npm script since it's no longer used
  • Loading branch information
XhmikosR committed Apr 19, 2022
1 parent 3b63d50 commit bae047f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 914 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Loading

0 comments on commit bae047f

Please sign in to comment.