From 8797488cc2702f9814c01baa1a27da4e064f73c2 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Thu, 12 Aug 2021 14:16:03 -0500 Subject: [PATCH] fix: Require all checks to complete before tagging --- .gitlab-ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6b39db1..b8c26f28 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -115,7 +115,15 @@ report_coverage: # If tests pass, tag the commit and update package versions deploy_to_tags: stage: deploy_tags - needs: ['test', 'build_image_for_commit'] + needs: + - test + - test_1.10.4 + - test_1.11.4 + - build_image_for_commit + - cypress + - credo + - prettier + - stylelint image: "node:16" only: - master