mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-27 21:16:15 +00:00
18 lines
392 B
YAML
18 lines
392 B
YAML
|
name: Lint markdown files
|
||
|
|
||
|
# Build on every branch push, tag push, and pull request change:
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
checks:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: Lint md files
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Lint markdown files
|
||
|
uses: articulate/actions-markdownlint@v1.1.0
|
||
|
with:
|
||
|
config: .markdownlint.jsonc
|