Skip to content

Commit 2386ff3

Browse files
committed
fix: ci issue
1 parent f144daa commit 2386ff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vitest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function resolveProjects(): string[] {
8282

8383
const rootConfig = findConfig(rootPath)
8484
if (rootConfig) {
85-
projects.push(path.relative(ROOT_DIR, rootConfig))
85+
projects.push(rootConfig)
8686
}
8787

8888
const entries = fs.readdirSync(rootPath, { withFileTypes: true })
@@ -94,7 +94,7 @@ function resolveProjects(): string[] {
9494
const projectDir = path.join(rootPath, entry.name)
9595
const configPath = findConfig(projectDir)
9696
if (configPath) {
97-
projects.push(path.relative(ROOT_DIR, configPath))
97+
projects.push(configPath)
9898
}
9999
}
100100
}

0 commit comments

Comments
 (0)