Skip to content

fix: improve docker container support for config and database #10

fix: improve docker container support for config and database

fix: improve docker container support for config and database #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Type check
run: bunx tsc --noEmit
- name: Lint
run: bun run lint
- name: Test
run: bun test