Skip to content
Draft
Show file tree
Hide file tree
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
11 changes: 10 additions & 1 deletion .github/workflows/ci-l0-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,17 +185,26 @@ jobs:
/tmp/gitleaks dir . --no-banner --redact --config .gitleaks.toml

node-regression:
name: Node regression (expert_skills)
name: Node regression (e2e_workflow)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
# Parse check first: a syntax error in the orchestrator would fail every test
# below with a confusing message about the test instead of about the file.
- name: e2e_workflow.js parses
run: node --check e2e_workflow/e2e_workflow.js
# Proves the use_expert_skills=OFF path injects nothing (byte-identical).
# Pure node (fs/path only) — no npm install needed.
- name: expert_skills OFF-identical regression
run: node e2e_workflow/scripts/test_expert_skills_off_identical.js
# Proves drop_gate ships as 'on', that 'off' is inert, and that a drop is refused
# unless it resolves to exactly one candidate of a KNOWN size below HEAD_PROTECT_PCT
# from a list that is not taking out more than DROP_MAX_FRACTION of the queue.
- name: drop_gate relevance-gate regression
run: node e2e_workflow/scripts/test_drop_gate.js

dry-run:
name: run_e2e dry-run mapping
Expand Down
Loading
Loading