Skip to content

Fix same-key self chat routing #129

Fix same-key self chat routing

Fix same-key self chat routing #129

Workflow file for this run

name: E2E Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright browsers
run: npx playwright install chromium
- name: Run E2E tests
run: pnpm test:ci:e2e
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30