Skip to content

Commit 00f08a6

Browse files
committed
ci: revert turbo test task, incompatible with Vitest Projects config
Packages without their own vitest.config.ts fall back to the root config's projects glob, which resolves relative to cwd and breaks under turbo run test. Reverting to full pnpm test run until per-package configs exist.
1 parent bcaa7eb commit 00f08a6

3 files changed

Lines changed: 1 addition & 5 deletions

File tree

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
run: exit 1
126126

127127
- name: Create Test Report
128-
run: pnpm test:affected
128+
run: pnpm test run
129129

130130
- name: Create Test Coverage
131131
id: test-coverage

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"format": "biome format",
5151
"format:staged": "biome format --staged",
5252
"test": "vitest --run",
53-
"test:affected": "turbo run test --affected",
5453
"test:watch": "vitest --watch",
5554
"test:coverage": "vitest run --coverage",
5655
"test:build": "docker build -f alpine.Dockerfile -t fusion_framework:test .",

turbo.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
"outputs": ["dist/**"],
88
"cache": true
99
},
10-
"test": {
11-
"dependsOn": ["^test"]
12-
},
1310
"//#preindex:eds": {
1411
"inputs": ["eds/Dockerfile", "eds/*.ts"],
1512
"outputs": ["eds/out/**"],

0 commit comments

Comments
 (0)