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