feat(worker): Add ALWAYS_INDEX_FILE_PATTERNS env var to specify files that should always be indexed
#230
Workflow file for this run
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: Check for broken links in docs | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - "docs/**" | |
| jobs: | |
| check-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Use Node.Js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: Install Mintlify CLI | |
| run: npm i -g mintlify | |
| - name: Check for broken links | |
| working-directory: docs | |
| run: mintlify broken-links |