2024-02-16 07:37:50 +08:00
|
|
|
name: Run unit tests
|
2022-10-26 16:48:04 +08:00
|
|
|
on:
|
|
|
|
pull_request: {}
|
2023-06-26 17:53:29 +08:00
|
|
|
push:
|
2023-06-27 16:02:40 +08:00
|
|
|
branches: [livekit, full-mesh]
|
2022-10-26 16:48:04 +08:00
|
|
|
jobs:
|
2024-02-10 01:07:43 +08:00
|
|
|
vitest:
|
|
|
|
name: Run vitest tests
|
2022-10-26 16:48:04 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2024-06-21 21:21:08 +08:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2022-10-26 16:48:04 +08:00
|
|
|
- name: Yarn cache
|
2024-06-21 21:21:08 +08:00
|
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
|
2022-10-26 16:48:04 +08:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
- name: Install dependencies
|
|
|
|
run: "yarn install"
|
2024-02-10 01:07:43 +08:00
|
|
|
- name: Vitest
|
2022-10-26 16:48:04 +08:00
|
|
|
run: "yarn run test"
|
2023-06-15 00:36:26 +08:00
|
|
|
- name: Upload to codecov
|
2024-06-21 21:21:08 +08:00
|
|
|
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4
|
2023-06-22 16:18:17 +08:00
|
|
|
with:
|
|
|
|
flags: unittests
|