From f7fafc6db9618ad43e45b5cd5c17719232f3500a Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 13 Aug 2025 21:52:03 +0100 Subject: [PATCH] fix the workflow matrix with a aggregating result (#317) --- .github/workflows/test.build.lib.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test.build.lib.yml b/.github/workflows/test.build.lib.yml index 99b3cd50..76aa19cc 100644 --- a/.github/workflows/test.build.lib.yml +++ b/.github/workflows/test.build.lib.yml @@ -56,3 +56,17 @@ jobs: npm install npm run build working-directory: lib/ + + results: + if: ${{ always() }} + runs-on: ubuntu-latest + name: Test Example Apps - results + needs: [build-examples] + steps: + - run: | + result="${{ needs.build-examples.result }}" + if [[ $result == "success" || $result == "skipped" ]]; then + exit 0 + else + exit 1 + fi