element-call-Github/.github/workflows/test.yaml

29 lines
825 B
YAML
Raw Normal View History

name: Run unit tests
on:
pull_request: {}
push:
branches: [livekit, full-mesh]
jobs:
vitest:
name: Run vitest tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
2024-10-09 18:02:22 +08:00
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Yarn cache
2024-09-28 05:30:48 +08:00
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
cache: "yarn"
2024-07-24 23:12:36 +08:00
node-version: "lts/*"
- name: Install dependencies
run: "yarn install"
- name: Vitest
run: "yarn run test:coverage"
- name: Upload to codecov
2024-10-04 15:06:17 +08:00
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2023-06-22 16:18:17 +08:00
with:
flags: unittests
fail_ci_if_error: true