From 8698cad8c4fed69ebabf593ee80753b5ce48a8e4 Mon Sep 17 00:00:00 2001 From: lauracc97 Date: Mon, 22 Apr 2024 13:41:00 +0200 Subject: [PATCH] Update build and release --- .github/workflows/build.yml | 4 ++++ .github/workflows/release.yml | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd86c5c8..6abc3a7f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,10 +15,14 @@ jobs: node-version: 20 - run: npm --prefix users/authservice ci - run: npm --prefix users/userservice ci + - run: npm --prefix questions/template-questions ci + - run: npm --prefix recordhistory ci - run: npm --prefix gatewayservice ci - run: npm --prefix webapp ci - run: npm --prefix users/authservice test -- --coverage - run: npm --prefix users/userservice test -- --coverage + - run: npm --prefix questions/template-questions test -- --coverage + - run: npm --prefix recordhistory test -- --coverage - run: npm --prefix gatewayservice test -- --coverage - run: npm --prefix webapp test -- --coverage - name: Analyze with SonarCloud diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35ba770e..98ee4155 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,10 +14,14 @@ jobs: node-version: 20 - run: npm --prefix users/authservice ci - run: npm --prefix users/userservice ci + - run: npm --prefix questions/template-questions ci + - run: npm --prefix recordhistory ci - run: npm --prefix gatewayservice ci - run: npm --prefix webapp ci - run: npm --prefix users/authservice test -- --coverage - run: npm --prefix users/userservice test -- --coverage + - run: npm --prefix questions/template-questions test -- --coverage + - run: npm --prefix recordhistory test -- --coverage - run: npm --prefix gatewayservice test -- --coverage - run: npm --prefix webapp test -- --coverage - name: Analyze with SonarCloud @@ -35,6 +39,8 @@ jobs: node-version: 20 - run: npm --prefix users/authservice install - run: npm --prefix users/userservice install + - run: npm --prefix questions/template-questions install + - run: npm --prefix recordhistory install - run: npm --prefix gatewayservice install - run: npm --prefix webapp install - run: npm --prefix webapp run build