Skip to content

Commit

Permalink
move check-starlark to the top
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek committed Oct 20, 2021
1 parent 9fde34f commit f44d194
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -728,14 +728,15 @@ def main(ctx):
# run example deploys on cron even if some prior pipelines fail
deploys = pipelinesDependsOn(deploys, pipelines)

pipelines = pipelines + deploys + checkStarlark()
pipelines = pipelines + deploys

pipelineSanityChecks(ctx, pipelines)
return pipelines

def beforePipelines(ctx):
base = \
checkForRecentBuilds(ctx) + \
checkStarlark() + \
documentation(ctx) + \
changelog(ctx)

Expand Down

0 comments on commit f44d194

Please sign in to comment.