Skip to content

Commit

Permalink
feat(build-action.yml): add new job Build-And-Test-Server-Unit-Tests …
Browse files Browse the repository at this point in the history
…to run after all unit tests have completed successfully

refactor(build-action.yml): make Build-And-Test-Web job depend on Prepare job instead of directly on unit tests for better separation of concerns and maintainability
  • Loading branch information
MartinMinkov committed Jul 18, 2024
1 parent 279478b commit 4b9e24d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,13 @@ jobs:
echo "### Test Results for Unit Tests Chunk ${{ matrix.chunk }}" >> $GITHUB_STEP_SUMMARY
cat profiling.md >> $GITHUB_STEP_SUMMARY
Build-And-Test-Server-Unit-Tests:
name: Build-And-Test-Server (Unit tests)
needs: [Run-Unit-Tests]
runs-on: ubuntu-latest
steps:
- run: echo "All unit tests completed successfully"

Build-And-Test-Web:
needs: Prepare
timeout-minutes: 90
Expand Down

0 comments on commit 4b9e24d

Please sign in to comment.