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