Skip to content

chore: deactivate check for kubefirst until we fix them all (#778) #1778

chore: deactivate check for kubefirst until we fix them all (#778)

chore: deactivate check for kubefirst until we fix them all (#778) #1778

---
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 }}