fix the workflow matrix with a aggregating result (#317)

This commit is contained in:
Ulf Gebhardt 2025-08-13 21:52:03 +01:00 committed by GitHub
parent f4c1fe7e25
commit f7fafc6db9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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