mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
15 lines
403 B
YAML
15 lines
403 B
YAML
name: Run Playwright Tests (Docker Build)
|
|
# This workflow is used to run Playwright tests in a Docker container built from the current branch
|
|
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-and-test:
|
|
uses: ./.github/workflows/playwright-test-reusable.yml
|
|
with:
|
|
test-mode: docker-build
|
|
test-command: pnpm --filter=n8n-playwright test:container:standard
|
|
secrets: inherit
|