mirror of
https://github.com/lobehub/lobe-chat.git
synced 2025-12-20 01:12:52 +08:00
* remove NEXT_PUBLIC_SERVICE_MODE * update * fix tests * update e2e workflow * update config * Rename DATABASE_TEST_URL to DATABASE_URL
67 lines
1.8 KiB
YAML
67 lines
1.8 KiB
YAML
name: E2E CI
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
concurrency:
|
|
group: e2e-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
e2e:
|
|
name: Test Web App
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
postgres:
|
|
image: paradedb/paradedb:latest
|
|
env:
|
|
POSTGRES_PASSWORD: postgres
|
|
options: >-
|
|
--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
ports:
|
|
- 5432:5432
|
|
|
|
timeout-minutes: 25
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: 1.2.23
|
|
|
|
- name: Install dependencies (bun)
|
|
run: bun install
|
|
|
|
- name: Install Playwright browsers (with system deps)
|
|
run: bunx playwright install --with-deps chromium
|
|
|
|
- name: Run E2E tests
|
|
env:
|
|
PORT: 3010
|
|
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
|
|
DATABASE_DRIVER: node
|
|
KEY_VAULTS_SECRET: LA7n9k3JdEcbSgml2sxfw+4TV1AzaaFU5+R176aQz4s=
|
|
run: bun run e2e
|
|
|
|
- name: Upload Cucumber HTML report (on failure)
|
|
if: failure()
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: cucumber-report
|
|
path: e2e/reports
|
|
if-no-files-found: ignore
|
|
|
|
- name: Upload screenshots (on failure)
|
|
if: failure()
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: test-screenshots
|
|
path: e2e/screenshots
|
|
if-no-files-found: ignore
|