mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-11 05:20:07 +00:00
Add linkcheck workflow (#2918)
## Issue Addressed Resolves #2889 ## Additional Info I have checked that the `linkcheck` workflow runs and detects broken links as expected, in https://github.com/ackintosh/lighthouse/pull/1.
This commit is contained in:
parent
0116c8d464
commit
a8ae9c8418
30
.github/workflows/linkcheck.yml
vendored
Normal file
30
.github/workflows/linkcheck.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: linkcheck
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- unstable
|
||||
pull_request:
|
||||
paths:
|
||||
- 'book/**'
|
||||
|
||||
jobs:
|
||||
linkcheck:
|
||||
name: Check broken links
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Create docker network
|
||||
run: docker network create book
|
||||
|
||||
- name: Run mdbook server
|
||||
run: docker run -v ${{ github.workspace }}/book:/book --network book --name book -p 3000:3000 -d peaceiris/mdbook:latest serve --hostname 0.0.0.0
|
||||
|
||||
- name: Print logs
|
||||
run: docker logs book
|
||||
|
||||
- name: Run linkcheck
|
||||
run: docker run --network book tennox/linkcheck:latest book:3000
|
Loading…
Reference in New Issue
Block a user