fix: exclude e2e tests from CI vitest run
Some checks failed
Build & Publish / publish (push) Failing after 7s

Playwright e2e tests need a browser and can't run in the CI container.
Exclude e2e/ directory from vitest so only unit tests run.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-24 18:01:26 +01:00
parent 795ffef9dc
commit c18ba7d085

View File

@@ -17,7 +17,7 @@ jobs:
run: npm ci
- name: Run tests
run: npx vitest run
run: npx vitest run --exclude 'e2e/**'
- name: Build library
run: npm run build:lib