Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ jobs:
if: steps.run_benchmarks.outcome == 'failure'
run: |
echo "::warning::Performance benchmark thresholds exceeded or benchmarks failed to run. Check the job logs for details."
frontend-checks:
frontend-run-checks:
needs: [detect-changes, formatting-hygiene]
if: |
always() &&
Expand Down Expand Up @@ -304,3 +304,18 @@ jobs:
run: npm run test
- name: Build frontend
run: npm run build

frontend-checks:
needs: [frontend-run-checks]
if: always()
runs-on: ubuntu-latest
steps:
- name: Check matrix results
run: |
if [ "${{ needs.frontend-run-checks.result }}" = "success" ] || [ "${{ needs.frontend-run-checks.result }}" = "skipped" ]; then
echo "Frontend checks completed successfully or skipped"
exit 0
else
echo "Frontend checks failed"
exit 1
fi
Loading
Loading