mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
24 lines
627 B
YAML
24 lines
627 B
YAML
name: 'Test: E2E Performance'
|
|
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *' # Runs daily at midnight
|
|
|
|
jobs:
|
|
# Cache-aware: no-op if an ancestor already populated the SHA-keyed cache.
|
|
prepare-docker:
|
|
uses: ./.github/workflows/prepare-docker-reusable.yml
|
|
secrets: inherit
|
|
|
|
build-and-test-performance:
|
|
needs: [prepare-docker]
|
|
uses: ./.github/workflows/test-e2e-reusable.yml
|
|
with:
|
|
test-mode: docker-artifact
|
|
test-command: pnpm --filter=n8n-playwright test:performance
|
|
currents-project-id: 'O9BJaN'
|
|
artifact-prefix: performance
|
|
secrets: inherit
|