Skip to content

fix(3853): playground resets between version switch #3133

fix(3853): playground resets between version switch

fix(3853): playground resets between version switch #3133

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- main
pull_request:
env:
E2E: true
jobs:
test:
timeout-minutes: 60
runs-on: depot-ubuntu-24.04-arm-16
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: ".node-version"
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Build
run: pnpm build
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Start server
run: pnpm preview &
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30