Compare commits
3 Commits
a0431cb630
...
e881be52b5
| Author | SHA1 | Date | |
|---|---|---|---|
| e881be52b5 | |||
| cc8efa3eab | |||
| 29a17595da |
@@ -1,6 +1,10 @@
|
|||||||
name: Run E2E Tests
|
name: Run E2E Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- main
|
||||||
|
- refs/heads/main
|
||||||
workflow_run:
|
workflow_run:
|
||||||
workflows:
|
workflows:
|
||||||
- Run Tests
|
- Run Tests
|
||||||
@@ -11,7 +15,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
e2e:
|
e2e:
|
||||||
name: E2E Tests
|
name: E2E Tests
|
||||||
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && (github.event.workflow_run.head_branch == 'main' || github.event.workflow_run.head_branch == 'refs/heads/main')) }}
|
if: ${{ github.event_name == 'workflow_dispatch' ||
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' &&
|
||||||
|
(github.event.workflow_run.head_branch == 'main' || github.event.workflow_run.head_branch == 'refs/heads/main')) }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: mcr.microsoft.com/playwright/python:v1.55.0-jammy
|
container: mcr.microsoft.com/playwright/python:v1.55.0-jammy
|
||||||
env:
|
env:
|
||||||
|
|||||||
Reference in New Issue
Block a user