Skip to content

fix: ensure grid root cache has a valid size (#8525) (CP: 24.6) #8136

fix: ensure grid root cache has a valid size (#8525) (CP: 24.6)

fix: ensure grid root cache has a valid size (#8525) (CP: 24.6) #8136

Workflow file for this run

name: Unit tests
on: pull_request
permissions:
contents: read
jobs:
chrome:
name: Chrome
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile --no-progress --non-interactive
- name: Test
run: yarn test
firefox:
name: Firefox
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile --no-progress --non-interactive
- name: Install Playwright
run: npx playwright install firefox --with-deps
- name: Test
run: yarn test:firefox
webkit:
name: WebKit
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile --no-progress --non-interactive
- name: Install Playwright
run: npx playwright install webkit --with-deps
- name: Test
run: yarn test:webkit