ci: update the search index of TypeSense every day at 3AM (#67) #139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Check Markdown Syntax | |
on: [push, workflow_dispatch] | |
jobs: | |
check-markdown: | |
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 }} |