From f44d194fb4b5b10804e84d0cc843a1ad93a92b09 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Wed, 20 Oct 2021 15:09:13 +0200 Subject: [PATCH] move check-starlark to the top --- .drone.star | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.star b/.drone.star index 95c9e258463..82f9a56dd93 100644 --- a/.drone.star +++ b/.drone.star @@ -728,7 +728,7 @@ 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 @@ -736,6 +736,7 @@ def main(ctx): def beforePipelines(ctx): base = \ checkForRecentBuilds(ctx) + \ + checkStarlark() + \ documentation(ctx) + \ changelog(ctx)