Skip to content

Commit

Permalink
fix(ci): exit code 1 when budget assertions fail (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
brahms116 committed Nov 16, 2023
1 parent 9dacf52 commit 611862c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/ci.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async function run() {
logger.info('For deployment demos, see https://unlighthouse.com/docs/deployment')
}
}
process.exit(0)
process.exit(hadError ? 1 : 0)
})
}

Expand Down

0 comments on commit 611862c

Please sign in to comment.