Skip to content

perf: skip lazy update on cache hit when cache purge is enabled #2209

perf: skip lazy update on cache hit when cache purge is enabled

perf: skip lazy update on cache hit when cache purge is enabled #2209

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
- name: Install Playwright
uses: ./.github/actions/setup-playwright
- name: Build the tool
run: pnpm build
- name: Build all workers
run: pnpm -r build:worker
- name: Run playwright tests
run: pnpm e2e
- name: Run playwright dev tests
run: pnpm e2e:dev
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: ./**/playwright-report
retention-days: 1