feat: 採点UIを設定オブジェクトから動的に生成するように変更 #88
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
jobs: | |
backend_build: | |
name: "Build & Check (backend)" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- run: corepack enable | |
- name: Setup Nodejs v20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install packages | |
run: pnpm i --frozen-lockfile | |
- name: Code Check | |
run: pnpm backend check | |
- name: Lint | |
run: pnpm backend lint | |
- name: Test | |
run: pnpm backend test | |
frontend_build: | |
name: "Build & Check (frontend)" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install | |
run: bun install --frozen-lockfile | |
- name: Lint bun lint | |
run: bun run --cwd packages/kcmsf lint | |
- name: Test | |
run: bun run --cwd packages/kcmsf test:ci |