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-10-09 18:02:22 +08:00
|
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
|
2022-10-26 16:48:04 +08:00
|
|
|
- name: Yarn cache
|
2024-09-28 05:30:48 +08:00
|
|
|
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
|
2022-10-26 16:48:04 +08:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2024-07-24 23:12:36 +08:00
|
|
|
node-version: "lts/*"
|
2022-10-26 16:48:04 +08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: "yarn install"
|
2024-02-10 01:07:43 +08:00
|
|
|
- name: Vitest
|
2024-08-27 21:45:39 +08:00
|
|
|
run: "yarn run test:coverage"
|
2023-06-15 00:36:26 +08:00
|
|
|
- name: Upload to codecov
|
2024-10-04 15:06:17 +08:00
|
|
|
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
|
2024-08-28 08:06:57 +08:00
|
|
|
env:
|
|
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
2023-06-22 16:18:17 +08:00
|
|
|
with:
|
|
|
|
flags: unittests
|
2024-08-27 21:45:39 +08:00
|
|
|
fail_ci_if_error: true
|