Skip to content
Merged
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
20 changes: 20 additions & 0 deletions .github/workflows/e2e-tests-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,26 @@ on:
default: false
type: boolean
pull_request:
# Only run this ~15-job, 20-30 minute E2E matrix for changes that can
# actually affect it. Everything else (CI-only workflow tweaks in other
# files, docs, release-please's version-bump-only PRs, skills/templates)
# skips it entirely. push/workflow_run/workflow_dispatch triggers above
# are deliberately left unfiltered -- see docker-build.yml/orthrus-build.yml
# for the same paths-on-pull_request-only convention already used in
# this repo.
paths:
- 'backend/**'
- 'frontend/**'
- 'tests/**'
- 'Dockerfile'
- '.dockerignore'
- '.docker/compose/**'
- 'package.json'
- 'package-lock.json'
- 'playwright.config.js'
- 'go.work'
- 'go.work.sum'
- '.github/workflows/e2e-tests-split.yml'

env:
NODE_VERSION: '24.19.0'
Expand Down
Loading