Skip to content
Merged
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
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,18 @@ jobs:

- name: Run unit tests
run: npm run unit --workspace=${{ matrix.workspace }}

# Aggregator so branch protection can require a single "Tests" check
# instead of every matrix combination.
tests:
name: Tests
needs: unit
if: always()
runs-on: ubuntu-24.04
steps:
- name: Check matrix result
run: |
if [ "${{ needs.unit.result }}" != "success" ]; then
echo "Unit test matrix result: ${{ needs.unit.result }}"
exit 1
fi
Loading