Skip to content

Commit

Permalink
prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jjosef committed Jan 30, 2024
1 parent f343894 commit f2c3fa6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
10 changes: 4 additions & 6 deletions src/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,11 @@ async function run(): Promise<void> {
// Report step tracer
const stepTracerContent: string | null = await stepTracer.report(currentJob)
// Report stat collector
const stepCollectorContent: string | null = await statCollector.report(
currentJob
)
const stepCollectorContent: string | null =
await statCollector.report(currentJob)
// Report process tracer
const procTracerContent: string | null = await processTracer.report(
currentJob
)
const procTracerContent: string | null =
await processTracer.report(currentJob)

let allContent = ''

Expand Down
5 changes: 2 additions & 3 deletions src/processTracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ export async function start(): Promise<boolean> {
logger.info(`Starting process tracer ...`)

try {
const procTracerBinaryName:
| string
| null = await getProcessTracerBinaryName()
const procTracerBinaryName: string | null =
await getProcessTracerBinaryName()
if (procTracerBinaryName) {
const procTraceOutFilePath = path.join(
__dirname,
Expand Down

0 comments on commit f2c3fa6

Please sign in to comment.