Make it possible to use the JWT service with a local homeserver #4506
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
cache: "yarn" | |
node-version: "lts/*" | |
- name: Install dependencies | |
run: "yarn install" | |
- name: Vitest | |
run: "yarn run test:coverage" | |
- name: Upload to codecov | |
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
flags: unittests | |
fail_ci_if_error: true |