ci: enforce frozen lockfile and run unit tests (#42)

This commit is contained in:
Charles Packer
2026-02-16 19:17:55 -08:00
committed by GitHub
parent 193a3f244b
commit 9c9543029f

View File

@@ -22,11 +22,14 @@ jobs:
bun-version: 1.3.0
- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile
- name: Lint & Type Check
run: bun run check
- name: Unit Tests
run: bun test
build:
needs: check
name: Build & Test
@@ -43,7 +46,7 @@ jobs:
bun-version: 1.3.0
- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile
- name: Build
run: bun run build