Skip to content

fix(codecov.yml): change branch name from 'main' to 'master' for unit… #1

fix(codecov.yml): change branch name from 'main' to 'master' for unit…

fix(codecov.yml): change branch name from 'main' to 'master' for unit… #1

Workflow file for this run

name: Run unit tests with coverage
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install packages
run: bun install
- name: Run tests
run: bun test
- name: Run tests with coverage
if: success()
run: bun test --coverage