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-09 03:51:42 -04:00
|
|
|
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e
|
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}}
|