Skip to content

Commit 310acf0

Browse files
ralyodioclaude
andcommitted
chore(ci): define a test script so the workflow runs the suite
.github/workflows/test.yml only runs `bun run test` when package.json defines a "test" script, and otherwise prints "No test script defined — skipping". No such script existed, so every green run to date was green because nothing ran: the 25 tests under tests/ were never executed in CI. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 00fe202 commit 310acf0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"dev": "next dev -p 8080",
88
"build": "next build",
99
"start": "next start -p ${PORT:-8080}",
10-
"lint": "next lint"
10+
"lint": "next lint",
11+
"test": "bun test tests/"
1112
},
1213
"dependencies": {
1314
"@libsql/client": "^0.15.7",

0 commit comments

Comments
 (0)