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
19 changes: 19 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@ on:
default: 'main'
pull_request_target:
branches: [main, feat/**]
# Skip E2E on changes that can't affect agent behavior (e.g. docs-only PRs).
# Only run when CLI source, e2e/browser tests, packaging, or the e2e
# workflows themselves change.
paths:
- 'src/**'
- 'e2e-tests/**'
- 'browser-tests/**'
- 'package.json'
- 'package-lock.json'
- 'npm-shrinkwrap.json'
- 'vitest.config.*'
# Build inputs that produce the `agentcore` binary E2E installs globally:
# TS compiler config, the esbuild bundler config, and scripts/** (which
# includes bundle/copy-assets/generate-schema and the check-old-cli.mjs
# postinstall hook — a bug there breaks `npm install -g` in the E2E job).
- 'tsconfig*.json'
- 'esbuild.config.*'
- 'scripts/**'
- '.github/workflows/e2e*'
Comment thread
notgitika marked this conversation as resolved.

concurrency:
group: e2e-${{ github.event.pull_request.number || github.ref }}
Expand Down
Loading