Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/e2e-playwright-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "E2E: Playwright Manual run"
on:
workflow_dispatch:
inputs:
sha:
description: Commit to run on
required: true
type: string

permissions:
contents: read
checks: write
statuses: write

jobs:
build-and-test:
uses: ./.github/workflows/e2e-playwright-run.yml
secrets: inherit
with:
sha: ${{ inputs.sha }}


27 changes: 27 additions & 0 deletions .github/workflows/e2e-playwright-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Playwright E2E: PR smoke tests"
on:
pull_request:
types: [ "opened", "reopened", "synchronize" ]
paths:
- "build.gradle"
- "gradle.properties"
- "settings.gradle"
- "gradle/libs.versions.toml"

- "contract/**"
- "api/**"
- "serde-api/**"
- "frontend/**"
- "e2e-playwright/**"

permissions:
contents: read
checks: write
statuses: write

jobs:
build-and-test:
uses: ./.github/workflows/e2e-playwright-run.yml
secrets: inherit
with:
sha: ${{ github.event.pull_request.head.sha }}
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: "E2E: Playwright Manual run"
name: "E2E: Playwright"

on:
workflow_dispatch:
sha:
required: true
type: string
workflow_call:
inputs:
sha:
required: true
type: string

permissions:
contents: read
Expand Down
Loading