Skip to content

feat: standards audit infrastructure overhaul #203

feat: standards audit infrastructure overhaul

feat: standards audit infrastructure overhaul #203

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.4"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bunx turbo run check
- name: Type check
run: bunx turbo run typecheck --continue
- name: Test
run: bunx turbo run test
- name: Build
run: bunx turbo run build