feat(tui): migrate quota sidebar and commands to TUI V2 #531
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: | |
| jobs: | |
| pnpm-quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js 24.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.x | |
| - name: Activate pnpm | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm@11.0.0 --activate | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run canonical verification | |
| run: pnpm verify | |
| - name: Pack and audit exact npm artifact once | |
| run: pnpm run pack:release-package package-artifacts | |
| - name: Upload exact npm artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: package-tarball | |
| path: package-artifacts/* | |
| if-no-files-found: error | |
| windows-verify: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js 24.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.x | |
| - name: Activate pnpm | |
| run: | | |
| corepack enable | |
| corepack prepare pnpm@11.0.0 --activate | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run canonical verification | |
| run: pnpm verify | |
| runtime-smoke: | |
| runs-on: ubuntu-latest | |
| needs: pnpm-quality | |
| strategy: | |
| matrix: | |
| node-version: [22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Download exact npm artifact | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: package-tarball | |
| path: package-artifacts | |
| - name: Smoke exact npm artifact on Node ${{ matrix.node-version }} | |
| run: node scripts/smoke-packed-package.mjs package-artifacts |