element-call-Github/.github/workflows/test.yaml
Angel Mendez Cano 0aacac3def chore: replace jest job with vitest
- update job id and name
2024-02-09 11:07:43 -06:00

25 lines
557 B
YAML

name: Run vitest tests
on:
pull_request: {}
push:
branches: [livekit, full-mesh]
jobs:
vitest:
name: Run vitest tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Yarn cache
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install dependencies
run: "yarn install"
- name: Vitest
run: "yarn run test"
- name: Upload to codecov
uses: codecov/codecov-action@v4
with:
flags: unittests