Skip to content

Merge branch 'feature/change-vite-to-rspack' of https://github.com/we… #170

Merge branch 'feature/change-vite-to-rspack' of https://github.com/we…

Merge branch 'feature/change-vite-to-rspack' of https://github.com/we… #170

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: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test:unit
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}