Skip to content

Commit

Permalink
Merge branch 'develop' into fix-fcm-proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Jul 9, 2024
2 parents 87bd00f + 6d689bd commit 2304a31
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -443,10 +443,38 @@ jobs:
name: ✅ Tests Done
runs-on: ubuntu-20.04
needs: [checks, test-unit, test-api, test-ui, test-api-ee, test-ui-ee, test-ui-ee-no-watcher]

if: always()
steps:
- name: Test finish aggregation
run: |
if [[ '${{ needs.checks.result }}' != 'success' ]]; then
exit 1
fi
if [[ '${{ needs.test-unit.result }}' != 'success' ]]; then
exit 1
fi
if [[ '${{ needs.test-api.result }}' != 'success' ]]; then
exit 1
fi
if [[ '${{ needs.test-ui.result }}' != 'success' ]]; then
exit 1
fi
if [[ '${{ needs.test-api-ee.result }}' != 'success' ]]; then
exit 1
fi
if [[ '${{ needs.test-ui-ee.result }}' != 'success' ]]; then
exit 1
fi
if [[ '${{ needs.test-ui-ee-no-watcher.result }}' != 'success' ]]; then
exit 1
fi
echo finished
deploy:
Expand Down

0 comments on commit 2304a31

Please sign in to comment.