This commit is contained in:
Tierney Cyren 2022-04-22 09:57:15 -04:00 коммит произвёл GitHub
Родитель 01b2bed946
Коммит 13cc8480c2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 20 добавлений и 0 удалений

20
.github/workflows/link-checker.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,20 @@
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
name: Link Checker
jobs:
linkinator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: JustinBeckwith/linkinator-action@v1
with:
paths: "**/*.md"
markdown: true
retry: true