Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

fix: tsc linter error #7

fix: tsc linter error

fix: tsc linter error #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check code
run: bun tsc && bun biome ci
- name: Check commit message
run: bun commitlint --last
- name: Run tests
run: bun test --coverage