48 lines
1.4 KiB
Text
48 lines
1.4 KiB
Text
# End-to-end tests: the real built client, driven by Playwright, against a live
|
|
# Ergo IRCv3 server over WebSocket (the same transport as production).
|
|
#
|
|
# Forgejo Actions. A self-hosted Forgejo instance may have no shared runners:
|
|
# attach your own Forgejo runner, then set `runs-on` below to a label that runner
|
|
# advertises (the default "docker" may match nothing). Needs an x86_64 host (Ergo ships
|
|
# a linux-x86_64 binary). Copy this file to .forgejo/workflows/e2e.yml to enable.
|
|
name: e2e
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
e2e:
|
|
runs-on: self-hosted # set to your runner's label
|
|
container:
|
|
image: node:22-bookworm
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: System deps (curl for the Ergo download)
|
|
run: apt-get update && apt-get install -y --no-install-recommends curl ca-certificates
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Install Playwright Chromium
|
|
run: npx playwright install --with-deps chromium
|
|
|
|
- name: Fetch Ergo IRCd
|
|
run: bash e2e/install-ergo.sh
|
|
|
|
- name: Run E2E
|
|
run: npx playwright test
|
|
env:
|
|
CI: "true"
|
|
|
|
- name: Upload report on failure
|
|
if: ${{ failure() }}
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: playwright-report
|
|
path: playwright-report/
|
|
retention-days: 7
|