Skip to content

ci: migrate CI workflows to use bun #3

ci: migrate CI workflows to use bun

ci: migrate CI workflows to use bun #3

Workflow file for this run

name: Type Check
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Run TypeScript Type Check
run: bun run typecheck