chore: fix local test run mode in release script

This commit is contained in:
Evan You 2024-02-13 13:07:39 +08:00
parent e50963903d
commit 159efa9d73
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ async function main() {
if (!skipTests) {
step('\nRunning tests...')
if (!isDryRun) {
await run('pnpm', ['run', 'test'])
await run('pnpm', ['run', 'test', '--run'])
} else {
console.log(`Skipped (dry run)`)
}