Skip to content

Merge pull request #16 from ut-code/UIdesign_v3 #48

Merge pull request #16 from ut-code/UIdesign_v3

Merge pull request #16 from ut-code/UIdesign_v3 #48

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
type-check:
name: Type Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun check
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run build
lint:
name: Lint (Prettier + ESLint)
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun lint