style: fix formatting

This commit is contained in:
Micael Levi L. Cavalcante
2023-09-20 21:57:59 -04:00
parent ec43dc8429
commit 6bcb3bdcbd
41 changed files with 94 additions and 77 deletions

View File

@@ -12,9 +12,8 @@ export default async function checkBenchmarks() {
if (!codechecks.isPr()) {
return;
}
const baselineBenchmarks = await codechecks.getValue<Benchmarks>(
benchmarksKey,
);
const baselineBenchmarks =
await codechecks.getValue<Benchmarks>(benchmarksKey);
const report = getCodechecksReport(currentBenchmarks, baselineBenchmarks);
await codechecks.report(report);
}