Skip to content

自分が予約したセルには重ねられるようにする #100

自分が予約したセルには重ねられるようにする

自分が予約したセルには重ねられるようにする #100

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
jobs:
biome:
name: biome lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check:lint
prettier:
name: biome format
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check:format
all-checks:
name: check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check