Update test workflow to rename Jest->Vitest (#31855)

* Update test workflow to rename Jest->Vitest

* Hold back completion name to not break branch protections
This commit is contained in:
Michael Telatynski 2026-01-23 09:28:40 +00:00 committed by GitHub
parent 9da2f350dc
commit 6cfc441ae0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,13 +93,13 @@ jobs:
complete:
name: jest-tests
needs: jest_ew
needs: [jest_ew, vitest_sc]
if: always()
runs-on: ubuntu-24.04
permissions:
statuses: write
steps:
- if: needs.jest_ew.result != 'skipped' && needs.jest_ew.result != 'success'
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1
- name: Skip SonarCloud in merge queue
@ -113,8 +113,8 @@ jobs:
sha: ${{ github.sha }}
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
jest_sc:
name: Jest (Shared Components)
vitest_sc:
name: Vitest (Shared Components)
runs-on: ubuntu-24.04
steps:
- name: Checkout code