mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
25 lines
684 B
YAML
25 lines
684 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
- name: Yarn cache
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
|
with:
|
|
cache: "yarn"
|
|
- name: Install dependencies
|
|
run: "yarn install"
|
|
- name: Vitest
|
|
run: "yarn run test"
|
|
- name: Upload to codecov
|
|
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4
|
|
with:
|
|
flags: unittests
|