Skip to content

Commit f98c73a

Browse files
ralyodioclaude
andcommitted
fix(ci): add test script to root package.json and turbo.json pipeline
CI workflows call `pnpm test` but no test script existed at the root. Adding a `test` turbo task that delegates to workspace packages; since no packages define a test script yet, turbo exits 0 (no-op) without failing. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5405177 commit f98c73a

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"lint": "turbo run lint",
2020
"typecheck": "turbo run typecheck",
2121
"clean": "turbo run clean && rm -rf node_modules .turbo",
22+
"test": "turbo run test",
2223
"setup:hooks": "git config core.hooksPath .githooks && echo 'Git hooks configured'"
2324
},
2425
"devDependencies": {

turbo.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
},
1515
"lint": { "outputs": [] },
1616
"typecheck": { "outputs": [] },
17+
"test": { "outputs": [] },
1718
"clean": { "cache": false }
1819
}
1920
}

0 commit comments

Comments
 (0)