Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
delanni committed Jul 19, 2024
1 parent 6fa5c99 commit 78917c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .buildkite/scripts/pipelines/pull_request/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ const getPipeline = (filename: string, removeSteps = true) => {
stdio: 'inherit',
});
process.exit(0);
return;
}

const pipeline = [];
const pipeline: string[] = [];

pipeline.push(getAgentImageConfig({ returnYaml: true }));
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/base.yml', false));
Expand Down

0 comments on commit 78917c5

Please sign in to comment.