Skip to content

feat(ui): Created simple UI for management #30

feat(ui): Created simple UI for management

feat(ui): Created simple UI for management #30

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
jobs:
test-and-codecov:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install deps
run: bun install --frozen-lockfile
- name: Test (lcov)
run: bun test --coverage --coverage-reporter=text --coverage-reporter=lcov
- name: Upload to Codecov
uses: codecov/codecov-action@v5
with:
# Omit 'token' for public repos. For private repos:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info
fail_ci_if_error: true