Skip to content

adjust base path back to slash (#755) #1712

adjust base path back to slash (#755)

adjust base path back to slash (#755) #1712

---
name: Markdown Syntax Validation
on: [push, workflow_dispatch]
jobs:
markdown-check:
strategy:
matrix:
configs: [
{
which: ".md",
files: "**.md",
config: "md.markdownlint.json"
},
{
which: ".mdx",
files: "**.mdx",
config: "mdx.markdownlint.json"
}
]
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/[email protected]
- name: Validate Markdown (${{ matrix.configs.which }})
uses: DavidAnson/[email protected]
with:
config: "${{ matrix.configs.config }}"
globs: ${{ matrix.configs.files }}