Skip to content

Commit

Permalink
wait for server before starting link checker
Browse files Browse the repository at this point in the history
  • Loading branch information
asmacdo committed Dec 19, 2024
1 parent b987445 commit 568565b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/link-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
pip install linkchecker
- name: Start server
run: nohup hugo server --baseURL http://localhost:1313 --bind 0.0.0.0 --disableFastRender > hugo_server.log 2>&1 &
run: |
nohup hugo server --baseURL http://localhost:1313 --bind 0.0.0.0 --disableFastRender > hugo_server.log 2>&1 &
sleep 1
- name: Check links
run: |
Expand Down

0 comments on commit 568565b

Please sign in to comment.