Browse Source

chore: fix local test run mode in release script

pull/10350/head
Evan You 1 year ago
parent
commit
159efa9d73
  1. 2
      scripts/release.js

2
scripts/release.js

@ -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)`)
}

Loading…
Cancel
Save