mirror of
https://github.com/openresty/openresty.git
synced 2024-10-13 00:29:41 +00:00
travis: added spelling check workflow. (#811)
This commit is contained in:
18
.github/workflows/markdownlint.yml
vendored
Normal file
18
.github/workflows/markdownlint.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: Linting on markdown files
|
||||
on:
|
||||
pull_request_target:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
lint-content:
|
||||
name: Lint content markdown files
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Lint markdown files
|
||||
uses: avto-dev/markdown-lint@v1
|
||||
with:
|
||||
config: './.markdownlint.jsonc'
|
||||
args: './content/**/*.md'
|
Reference in New Issue
Block a user