ci: check for broken links
This commit is contained in:
parent
12c1620bbf
commit
82eb7a82da
1 changed files with 16 additions and 0 deletions
16
.github/workflows/hyperlink.yml
vendored
Normal file
16
.github/workflows/hyperlink.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: "Check for broken links"
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "main"
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: "actions/checkout@v3"
|
||||
- uses: "pnpm/action-setup@v2"
|
||||
with:
|
||||
version: 8
|
||||
run_install: true
|
||||
- name: "Run"
|
||||
run: "./node_modules/.bin/hyperlink -r ."
|
Loading…
Reference in a new issue