Refactor comment reply list to query all replies by default #53
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| name: Verify on Node ${{ matrix.node-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: | |
| - "22" | |
| - "24" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Vite+ | |
| uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: true | |
| - name: Install dependencies | |
| run: vp install | |
| - name: Typecheck | |
| run: vp run typecheck | |
| - name: Lint | |
| run: vp lint | |
| - name: Test | |
| run: vp test | |
| - name: Pack | |
| run: vp pack | |
| - name: Verify npm package contents | |
| run: npm pack --dry-run |