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