Skip to content

Update fontsource monorepo to ^5.2.8 #16091

Update fontsource monorepo to ^5.2.8

Update fontsource monorepo to ^5.2.8 #16091

Workflow file for this run

# NOTE: This name appears in GitHub's Checks API and in workflow's status badge.
name: ci-playwright
# Trigger the workflow when:
on:
# A push occurs to one of the matched branches.
push:
branches:
- master
- stable/*
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- master
- stable/*
jobs:
playwright:
# NOTE: This name appears in GitHub's Checks API.
name: playwright
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.56.1-noble
options: --user 1001
strategy:
fail-fast: false
matrix:
shardIndex: [1, 2, 3]
shardTotal: [3]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install playwright
run: yarn install --frozen-lockfile
working-directory: playwright
- name: Run playwright tests (auto-starts dev server)
run: yarn test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
working-directory: playwright