Skip to content

登録画面で起こるバグを修正 (#69) #143

登録画面で起こるバグを修正 (#69)

登録画面で起こるバグを修正 (#69) #143

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup tools
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
format:
runs-on: ubuntu-24.04
steps:
- name: Checkout the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup tools
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Format
run: bun run format
type-check:
runs-on: ubuntu-24.04
steps:
- name: Checkout the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup tools
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check types
run: bun run typecheck
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup tools
uses: jdx/mise-action@d6e32c1796099e0f1f3ac741c220a8b7eae9e5dd # v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build