From 1306db8f8ad9f06f3c6ba1e2475dc2e29dccbbb9 Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Fri, 26 May 2023 10:20:06 +0200 Subject: [PATCH] Run default steps in parallel --- bitbucket-pipelines.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index ebce5550..cd906c3f 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -94,16 +94,17 @@ js-linting: &js-linting - npm run typecheck default-steps: &default-steps - - step: *e2e - - step: *e2e - - step: *python-tests - - step: *python-linting - - step: *js-tests - - step: *js-linting - - step: - <<: *deploy - name: deploy feature - trigger: manual + - parallel: + - step: *e2e + - step: *e2e + - step: *python-tests + - step: *python-linting + - step: *js-tests + - step: *js-linting + - step: + <<: *deploy + name: deploy feature + trigger: manual # main pipelines definitions pipelines: