Skip to content

Commit 6e791c0

Browse files
committed
fix(ci): exclude e2e tests from CI test matrix
E2E tests require Docker and should not run in the standard CI test jobs. Added ! -path "*e2e*" to the find command.
1 parent 46cc212 commit 6e791c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ jobs:
159159
elif [ "${{ matrix.package }}" = "web" ]; then
160160
bun run test --runInBand
161161
else
162-
find src -name '*.test.ts' ! -name '*.integration.test.ts' | sort | xargs -I {} bun test {}
162+
# Exclude integration tests and e2e tests (e2e tests require Docker)
163+
find src -name '*.test.ts' ! -name '*.integration.test.ts' ! -path '*e2e*' | sort | xargs -I {} bun test {}
163164
fi
164165
165166
# - name: Open interactive debug shell

0 commit comments

Comments
 (0)