Skip to content

Merge pull request #1 from cornell-dti/setup-cicd #4

Merge pull request #1 from cornell-dti/setup-cicd

Merge pull request #1 from cornell-dti/setup-cicd #4

Workflow file for this run

name: CI
on:
push:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Type check
run: bun run type-check
- name: Lint check
run: bun run lint