fix(virtual-list): support dynamic row heights with measured-height o… #951
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: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| actions: write | |
| concurrency: | |
| group: ci-github.workflow-github.ref | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| name: Build & test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build (type-check + bundle) | |
| run: npm run build | |
| - name: Test | |
| run: npm run test | |
| playwright: | |
| name: Playwright E2E | |
| runs-on: ubuntu-latest | |
| needs: build-and-test | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| actions: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps | |
| - name: Run accessibility tests | |
| run: npm run test:a11y | |
| - name: Run E2E tests (gateable) | |
| run: npm run test:e2e -- --grep="landing-cta|not-found|create-stream" |