From 297bf3441f3af5b5fe962d17078628de38b110ea Mon Sep 17 00:00:00 2001 From: Simen Fivelstad Smaaberg <66635118+simensma-fresh@users.noreply.github.com> Date: Wed, 26 Jun 2024 18:48:59 +0000 Subject: [PATCH] [MDS-6030] Perform sonarcloud scan after merging into develop --- .github/workflows/common-package.unit.yaml | 6 +++++- .github/workflows/core-web.unit.yaml | 6 ++++++ .github/workflows/minespace.unit.yaml | 6 ++++++ .github/workflows/tests.integration.yaml | 5 +++++ 4 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.github/workflows/common-package.unit.yaml b/.github/workflows/common-package.unit.yaml index ad7cb53028..074868fe47 100644 --- a/.github/workflows/common-package.unit.yaml +++ b/.github/workflows/common-package.unit.yaml @@ -5,7 +5,11 @@ on: paths: - services/common/** workflow_dispatch: - + push: + branches: + - develop + paths: + - services/common/** jobs: test-common-package: name: test-common-package diff --git a/.github/workflows/core-web.unit.yaml b/.github/workflows/core-web.unit.yaml index 47bb033c13..daa6f9e1af 100644 --- a/.github/workflows/core-web.unit.yaml +++ b/.github/workflows/core-web.unit.yaml @@ -6,6 +6,12 @@ on: paths: - services/common/** - services/core-web/** + push: + branches: + - develop + paths: + - services/common/** + - services/core-web/** jobs: tests-unit-frontend: diff --git a/.github/workflows/minespace.unit.yaml b/.github/workflows/minespace.unit.yaml index 7aa85a7850..6d24a761c1 100644 --- a/.github/workflows/minespace.unit.yaml +++ b/.github/workflows/minespace.unit.yaml @@ -5,6 +5,12 @@ on: paths: - services/common/** - services/minespace-web/** + push: + branches: + - develop + paths: + - services/common/** + - services/minespace-web/** jobs: tests-unit-minespace: diff --git a/.github/workflows/tests.integration.yaml b/.github/workflows/tests.integration.yaml index 732c0d9b20..72f46ce270 100644 --- a/.github/workflows/tests.integration.yaml +++ b/.github/workflows/tests.integration.yaml @@ -8,6 +8,11 @@ on: - services/postgres/** - docker-compose - docker-compose.ci.yaml + push: + branches: + - develop + paths: + - services/core-api/** jobs: tests-verify-migrations: