mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-12 23:36:00 +00:00
fix the workflow matrix with a aggregating result (#317)
This commit is contained in:
parent
f4c1fe7e25
commit
f7fafc6db9
14
.github/workflows/test.build.lib.yml
vendored
14
.github/workflows/test.build.lib.yml
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user