Skip to content

Commit

Permalink
remove unnecessary steps
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed Mar 22, 2024
1 parent 1a57424 commit b6bf04d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -673,9 +673,7 @@ def e2eTests(ctx):
depends_on = []
steps = skipIfUnchanged(ctx, "e2e-tests") + \
restoreBuildArtifactCache(ctx, "pnpm", ".pnpm-store") + \
restoreBuildArtifactCache(ctx, "playwright", ".playwright") + \
installPnpm() + \
installPlaywright() + \
restoreBuildArtifactCache(ctx, "web-dist", "dist")

if ctx.build.event == "cron":
Expand Down Expand Up @@ -968,7 +966,7 @@ def installPlaywright():
"PLAYWRIGHT_BROWSERS_PATH": ".playwright",
},
"commands": [
"pnpm exec playwright install --with-deps chromium",
"pnpm exec playwright install --with-deps",
],
}]

Expand Down Expand Up @@ -2331,9 +2329,7 @@ def e2eTestsOnKeycloak(ctx):
return []

steps = restoreBuildArtifactCache(ctx, "pnpm", ".pnpm-store") + \
restoreBuildArtifactCache(ctx, "playwright", ".playwright") + \
installPnpm() + \
installPlaywright() + \
keycloakService() + \
restoreBuildArtifactCache(ctx, "web-dist", "dist")
if ctx.build.event == "cron":
Expand Down

0 comments on commit b6bf04d

Please sign in to comment.