Skip to content

fix(virtual-list): support dynamic row heights with measured-height o… #951

fix(virtual-list): support dynamic row heights with measured-height o…

fix(virtual-list): support dynamic row heights with measured-height o… #951

Workflow file for this run

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"