Replace astral-sh/setup-uv action with direct curl install to avoid Node.js 18 incompatibility (setup-uv v6+ requires Node 20+). Change e2e test API host port from 8000 to 8100 to avoid conflict with existing service on the CI runner. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1002 B
1002 B
title, status, type, priority, created_at, updated_at
| title | status | type | priority | created_at | updated_at |
|---|---|---|---|---|---|
| Fix CI workflow failures for backend and e2e tests | in-progress | bug | normal | 2026-02-21T15:26:22Z | 2026-02-21T15:27:40Z |
Two failures in CI:
-
backend-tests:
astral-sh/setup-uv@v6.8.0requires Node.js 20+ but the act runner has Node.js 18. TheFileglobal doesn't exist in Node 18, causing a ReferenceError. Fix: install uv directly via curl instead of using the GitHub Action. -
e2e-tests: Port 8000 is already allocated on the runner host. The docker-compose.test.yml binds test-api to host port 8000 which conflicts with whatever else runs on the CI machine. Fix: use port 8100 for the test API container.
Checklist
- Replace
astral-sh/setup-uvaction with direct curl install of uv +uv python install 3.14 - Change e2e test API host port from 8000 to 8100 in docker-compose.test.yml
- Update global-setup.ts to use port 8100
- Verify no other references to the test API port