Skip to content

Commit

Permalink
linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
snowiow committed Jan 3, 2024
1 parent 913cce9 commit dcac36f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const waitForPipeline = async (
try {
const data = await CLIENT.send(command);

if (data.pipelineExecution === undefined || !data.pipelineExecution.status) {
if (!data.pipelineExecution?.status) {
core.error('No Status for Pipeline');
return false;
}
Expand Down

0 comments on commit dcac36f

Please sign in to comment.