Skip to content

Commit

Permalink
chore: update gh action name
Browse files Browse the repository at this point in the history
  • Loading branch information
dolcalmi committed Oct 22, 2024
1 parent dee7545 commit c0cb11f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration-test2.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Integration test 2"
name: "Integration test - parallel"
on:
pull_request:
branches: [main]
Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:
matrix:
label: ${{ fromJSON(needs.prepare.outputs.matrix) }}
outputs:
build-success: ${{ steps.mark-success.outputs.success }}
component: ${{ steps.mark-success.outputs.component }}
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
# Consent and API keys dependencies
case "$LABEL" in
dashboard|voucher|consent) # Added consent here
dashboard|voucher|consent)
BUILD_ARGS+=" //apps/consent:consent"
BUILD_ARGS+=" //core/api-keys:api-keys"
;;
Expand Down Expand Up @@ -108,17 +108,17 @@ jobs:

- name: Mark build as successful
id: mark-success
run: echo "success=${{ matrix.label }}" >> "$GITHUB_OUTPUT"
run: echo "component=${{ matrix.label }}" >> "$GITHUB_OUTPUT"

test:
needs: [prepare, build]
if: contains(needs.*.outputs.*.build-success, matrix.label)
name: Test ${{ matrix.label }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
label: ${{ fromJSON(needs.prepare.outputs.matrix) }}
if: ${{ needs.build.outputs.component == matrix.label }}
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
Expand Down

0 comments on commit c0cb11f

Please sign in to comment.