Skip to content

chore(.gitignore): add dsc-slate and frontpage-slate to .gitignore #21

chore(.gitignore): add dsc-slate and frontpage-slate to .gitignore

chore(.gitignore): add dsc-slate and frontpage-slate to .gitignore #21

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