feat: add importable examples, expand connectors, add GitHub Actions … #2
This file contains hidden or 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: Lint Markdown | |
| on: | |
| push: | |
| branches: [main] | |
| paths: ['**/*.md'] | |
| pull_request: | |
| branches: [main] | |
| paths: ['**/*.md'] | |
| jobs: | |
| lint: | |
| name: Markdown Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Lint Markdown files | |
| uses: DavidAnson/markdownlint-cli2-action@v19 | |
| with: | |
| globs: | | |
| **/*.md | |
| !node_modules/** | |
| - name: Check for broken links | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| use-quiet-mode: 'yes' | |
| config-file: '.github/mlc_config.json' | |
| continue-on-error: true |