Skip to content

Commit

Permalink
add regular link checking to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenFluin committed Jul 19, 2021
1 parent 6b510ba commit 6a27b21
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check Docs and Site Links

on:
schedule:
- cron: '30 8 * * *'

jobs:
check-links:
name: Regularly check links
runs-on: ubuntu-latest
steps:
- name: Check docs links with linkcheck
uses: filiph/linkcheck@v2.0.15+1
with:
arguments: https://docs.chain.link/ -e
- name: Check chain.link with linkcheck
uses: filiph/linkcheck@v2.0.15+1
with:
arguments: https://chain.link -e

0 comments on commit 6a27b21

Please sign in to comment.