2022-09-02 05:52:42 -04:00
|
|
|
name: Links
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-09-05 03:49:10 -04:00
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- "**.md"
|
|
|
|
- "**.html"
|
2022-09-02 05:52:42 -04:00
|
|
|
pull_request:
|
2022-09-05 03:49:10 -04:00
|
|
|
paths:
|
|
|
|
- "**.md"
|
|
|
|
- "**.html"
|
2022-09-02 05:52:42 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
linkChecker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-09-19 04:59:46 -04:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
2022-09-02 05:52:42 -04:00
|
|
|
|
|
|
|
- name: Link Checker
|
2022-09-09 03:51:42 -04:00
|
|
|
uses: lycheeverse/lychee-action@4a5af7cd2958a2282cefbd9c10f63bdb89982d76
|
2022-09-02 05:52:42 -04:00
|
|
|
with:
|
|
|
|
fail: true
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|