Skip to content

setting docs production to chart version 0.39.0 #595

setting docs production to chart version 0.39.0

setting docs production to chart version 0.39.0 #595

---
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/checkout@main
- name: Validate Markdown (${{ matrix.configs.which }})
uses: DavidAnson/[email protected]
with:
command: config
globs: |
${{ matrix.configs.config }}
${{ matrix.configs.files }}