mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
Add GitHub Workflow for checking the spelling of Markdown content.
This commit is contained in:
parent
392a184bc8
commit
97f349a81d
2 changed files with 125 additions and 0 deletions
18
.github/workflows/spell-check.yml
vendored
Normal file
18
.github/workflows/spell-check.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: SpellCheck
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
schedule:
|
||||
- cron: '30 12 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
spellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: tbroadley/spellchecker-cli-action@v1.1.1
|
||||
with:
|
||||
dictionaries: '.github/dictionary.txt'
|
||||
files: '*.md doc/*.md helpers/*.md'
|
Loading…
Add table
Add a link
Reference in a new issue