From 0aacac3def3599e84c601aee1d925e1b710a98bf Mon Sep 17 00:00:00 2001 From: Angel Mendez Cano Date: Fri, 9 Feb 2024 11:07:43 -0600 Subject: [PATCH] chore: replace jest job with vitest - update job id and name --- .github/workflows/test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d37aa75c..ddfacd07 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,11 +1,11 @@ -name: Run jest tests +name: Run vitest tests on: pull_request: {} push: branches: [livekit, full-mesh] jobs: - jest: - name: Run jest tests + vitest: + name: Run vitest tests runs-on: ubuntu-latest steps: - name: Checkout code @@ -16,7 +16,7 @@ jobs: cache: "yarn" - name: Install dependencies run: "yarn install" - - name: Jest + - name: Vitest run: "yarn run test" - name: Upload to codecov uses: codecov/codecov-action@v4