Skip to content

add vitest coverage, add workflow for coverage, remove empty tests fo… #1

add vitest coverage, add workflow for coverage, remove empty tests fo…

add vitest coverage, add workflow for coverage, remove empty tests fo… #1

Workflow file for this run

name: Run tests and upload coverage
on: push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Set up Node
uses: actions/setup-node@v4
- name: Install dependencies
run: pnpm i
- name: Run tests
run: pnpm coverage
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}