mirror of https://github.com/openresty/openresty
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
382 B
C
19 lines
382 B
C
3 years ago
|
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'
|