From 8f1184cb7153ae8b61bea32a1b2e82036c418024 Mon Sep 17 00:00:00 2001 From: Timo De Meyst Date: Tue, 8 Apr 2025 18:50:12 +0200 Subject: [PATCH] actions: build project vooraleer te testen --- .github/workflows/backend-testing.yml | 1 + .github/workflows/frontend-testing.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/backend-testing.yml b/.github/workflows/backend-testing.yml index a372da74..ce7600e0 100644 --- a/.github/workflows/backend-testing.yml +++ b/.github/workflows/backend-testing.yml @@ -48,6 +48,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci + - run: npm run build - run: npm run test:coverage -w backend - name: 'Report Backend Coverage' # Set if: always() to also generate the report if tests are failing diff --git a/.github/workflows/frontend-testing.yml b/.github/workflows/frontend-testing.yml index b40f6915..053e66c3 100644 --- a/.github/workflows/frontend-testing.yml +++ b/.github/workflows/frontend-testing.yml @@ -57,6 +57,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci + - run: npm run build - run: npm run test:coverage -w frontend - name: 'Report Frontend Coverage' # Set if: always() to also generate the report if tests are failing