Skip to content

Merge pull request #300 from MLAI-AUS-Inc/medhack-updates #565

Merge pull request #300 from MLAI-AUS-Inc/medhack-updates

Merge pull request #300 from MLAI-AUS-Inc/medhack-updates #565

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run type check
run: bun run typecheck
- name: Build project
run: bun run build