mirror of
https://github.com/vector-im/element-call.git
synced 2026-01-30 03:15:55 +00:00
29 lines
856 B
YAML
29 lines
856 B
YAML
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
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- name: Yarn cache
|
|
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
|
|
with:
|
|
cache: "yarn"
|
|
node-version-file: ".node-version"
|
|
- name: Install dependencies
|
|
run: "yarn install --frozen-lockfile"
|
|
- name: Vitest
|
|
run: "yarn run test:coverage"
|
|
- name: Upload to codecov
|
|
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
with:
|
|
flags: unittests
|
|
fail_ci_if_error: true
|