Skip to content

Add generation benchmark spec replay support #141

Add generation benchmark spec replay support

Add generation benchmark spec replay support #141

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.20.0, 20.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.26.2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Verify source files are tracked
run: bash scripts/verify-source-files.sh
- name: Build packages
run: pnpm run build
- name: Install Playwright Chromium
run: pnpm --filter @surfaces/interfacectl-cli exec playwright install chromium
- name: Run tests
run: pnpm run test