fix: recompute terminal layout on mobile breakpoint changes #1381
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: tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - name: Install | |
| run: npm ci | |
| - name: Release version consistency | |
| run: npm run release:check-version | |
| - name: Unit tests | |
| run: npm run test:unit | |
| - name: Command surface drift check | |
| run: npm run check:command-surface | |
| public_release_audit: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| needs: [unit] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - name: Install | |
| run: npm ci | |
| - name: Public release audit (non-destructive) | |
| run: npm run audit:public-release |