2022-08-20 21:46:31 +02:00
|
|
|
name: Checkers
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
2023-09-17 19:59:26 +02:00
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2022-08-20 21:46:31 +02:00
|
|
|
schedule:
|
|
|
|
- cron: '30 12 * * *'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
linkcheck:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 18:10:21 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-14 10:15:46 +01:00
|
|
|
- uses: JustinBeckwith/linkinator-action@v1.10.4
|
2022-08-20 21:46:31 +02:00
|
|
|
with:
|
|
|
|
paths: '*.md'
|
2022-11-30 04:38:35 +01:00
|
|
|
timeout: 60000
|
2022-08-20 21:46:31 +02:00
|
|
|
|
|
|
|
spellcheck:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-05 18:10:21 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-30 04:38:35 +01:00
|
|
|
- uses: tbroadley/spellchecker-cli-action@v1
|
2022-08-20 21:46:31 +02:00
|
|
|
with:
|
|
|
|
dictionaries: '.github/dictionary.txt'
|
|
|
|
files: '*.md'
|