feat(vscode-extension): improve UX/DX, add minSeverity config, and harden extension API stability #14
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: Docs Lint | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.md" | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| link-check: | |
| name: Markdown link integrity | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Check markdown links with lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| fail: true | |
| format: markdown | |
| jobSummary: true | |
| args: >- | |
| --config lychee.toml | |
| --verbose | |
| --no-progress | |
| './**/*.md' |