Skip to content

fix: separate e2e workflow, restore test-app tsconfig #2

fix: separate e2e workflow, restore test-app tsconfig

fix: separate e2e workflow, restore test-app tsconfig #2

Workflow file for this run

name: E2E
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: e2e-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Build
run: bun run build
- name: E2E Tests
run: bun run e2e