Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a156c4e63 | |||
| 5f817ec4f6 | |||
| 06d7dfb212 | |||
| ba508b8fc4 |
@@ -10,6 +10,16 @@ on:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
|
# Serialize E2E runs repo-wide. All concurrent runs share the same
|
||||||
|
# E2E_RELEASE name (headlamp-e2e) in a single namespace. Without
|
||||||
|
# serialization, one run's teardown (if: always()) deletes the
|
||||||
|
# deployment while a concurrent run is still using it, causing auth
|
||||||
|
# setup timeouts. cancel-in-progress: false queues rather than kills
|
||||||
|
# to avoid leaving dangling cluster resources.
|
||||||
|
concurrency:
|
||||||
|
group: e2e-${{ github.repository }}
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
env:
|
env:
|
||||||
E2E_NAMESPACE: privilegedescalation-dev
|
E2E_NAMESPACE: privilegedescalation-dev
|
||||||
E2E_RELEASE: headlamp-e2e
|
E2E_RELEASE: headlamp-e2e
|
||||||
@@ -24,7 +34,7 @@ jobs:
|
|||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: '22'
|
node-version: '22'
|
||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
@@ -64,7 +74,7 @@ jobs:
|
|||||||
run: scripts/teardown-e2e-headlamp.sh
|
run: scripts/teardown-e2e-headlamp.sh
|
||||||
|
|
||||||
- name: Upload Playwright report
|
- name: Upload Playwright report
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: playwright-report
|
name: playwright-report
|
||||||
@@ -72,7 +82,7 @@ jobs:
|
|||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
- name: Upload test results
|
- name: Upload test results
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: test-results
|
name: test-results
|
||||||
|
|||||||
Reference in New Issue
Block a user