Skip to content

Commit

Permalink
fix: call test instead of build for verify (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikg authored Feb 5, 2024
1 parent fceb0eb commit fb31781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export async function buildVite({ verify = false }) {
cd(vitePath)
const frozenInstall = getCommand('pnpm', 'frozen')
const runBuild = getCommand('pnpm', 'run', ['build'])
const runTest = getCommand('pnpm', 'run', ['build'])
const runTest = getCommand('pnpm', 'run', ['test'])
await $`${frozenInstall}`
await $`${runBuild}`
if (verify) {
Expand Down

0 comments on commit fb31781

Please sign in to comment.