c9858dd4e1
Scaffolded via e2e-scaffold.sh (proactive improvement). - playwright.config.ts, e2e/auth.setup.ts, e2e/kube-vip.spec.ts - scripts/deploy-e2e-headlamp.sh, scripts/teardown-e2e-headlamp.sh - .github/workflows/e2e.yaml uses reusable workflow - @playwright/test ^1.58.2 devDep - PRI-641 Co-Authored-By: Paperclip <noreply@paperclip.ing>
24 lines
412 B
YAML
24 lines
412 B
YAML
name: E2E Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: e2e-${{ github.repository }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
e2e:
|
|
uses: privilegedescalation/.github/.github/workflows/plugin-e2e.yaml@main
|
|
with:
|
|
node-version: '22'
|
|
headlamp-version: v0.40.1
|
|
e2e-namespace: headlamp-dev
|