feat: 优化分类导航渲染逻辑,仅在首页、首页分页和归档页进行服务端渲染 (#277) #485
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: Code quality | |
| on: | |
| push: | |
| branches: [ master ] # Adjust branches as needed | |
| pull_request: | |
| branches: [ master ] # Adjust branches as needed | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Biome | |
| uses: biomejs/setup-biome@f382a98e582959e6aaac8e5f8b17b31749018780 # v2.5.0 | |
| with: | |
| version: latest | |
| - name: Run Biome | |
| run: biome ci ./src --reporter=github |