fix(twitter): 按 HTTP 状态翻译 API 错误 + 修 SearchTimeline queryId 误取 #3110
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: Doc Check | |
| on: | |
| pull_request: | |
| branches: [main, dev] | |
| concurrency: | |
| group: doc-check-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # ── Adapter doc coverage ── | |
| doc-coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check adapter doc coverage | |
| run: bash scripts/check-doc-coverage.sh --strict | |
| # ── VitePress build validation ── | |
| docs-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build docs (catches broken links & sidebar refs) | |
| run: npm run docs:build |