mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2026-07-05 09:20:50 +02:00
28 lines
540 B
YAML
28 lines
540 B
YAML
name: Checkers
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore:
|
|
- 'dependabot/**'
|
|
schedule:
|
|
- cron: '30 12 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
linkcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: 'npx linkinator "*.md" --directory-listing --skip "^https://wikipedia.org/"'
|
|
|
|
spellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: tbroadley/spellchecker-cli-action@v1
|
|
with:
|
|
dictionaries: '.github/dictionary.txt'
|
|
files: '*.md'
|