mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 03:24:59 +02:00
Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
25 lines
913 B
YAML
25 lines
913 B
YAML
name: 'Test: Workflows Nightly'
|
|
|
|
# Nightly schedule disabled (DEVP-544): the "Run Workflow Tests with Snapshots"
|
|
# job fails the majority of its runs due to host-level port contention on shared
|
|
# runners (a stale n8n process holds port 5679, so the Task Broker hits
|
|
# EADDRINUSE), not a product regression. Re-enable the `schedule` trigger once the
|
|
# port cleanup / ephemeral-port fix lands. The job can still be run on demand via
|
|
# workflow_dispatch.
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
git_ref_to_test:
|
|
description: 'The Git ref (branch, tag, or SHA) to run tests against.'
|
|
required: true
|
|
type: string
|
|
default: 'master'
|
|
|
|
jobs:
|
|
run_workflow_tests:
|
|
name: Run Workflow Tests
|
|
uses: ./.github/workflows/test-workflows-callable.yml
|
|
with:
|
|
git_ref: ${{ github.event_name == 'schedule' && 'master' || github.event.inputs.git_ref_to_test }}
|
|
secrets: inherit
|