Skip to content

[FIX] 대시보드 불필요 훅 파일 제거 & 타입 분리 & 서버 응답(total) 사용 #373

[FIX] 대시보드 불필요 훅 파일 제거 & 타입 분리 & 서버 응답(total) 사용

[FIX] 대시보드 불필요 훅 파일 제거 & 타입 분리 & 서버 응답(total) 사용 #373

Workflow file for this run

name: Frontend CI
on:
pull_request:
paths:
- "frontend/**"
- ".github/workflows/frontend-ci.yml"
push:
branches: [main]
paths:
- "frontend/**"
- ".github/workflows/frontend-ci.yml"
jobs:
ci:
runs-on: ubuntu-latest
environment: starter-env
env:
BASE_API_URL: ${{ secrets.BASE_API_URL }}
NEXT_PUBLIC_API_BASE_URL: ${{ secrets.NEXT_PUBLIC_API_BASE_URL }}
NEXT_PUBLIC_MOCKING: ${{ secrets.NEXT_PUBLIC_MOCKING }}
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 25.2.1
- name: Install dependencies
run: yarn install --no-lockfile
- name: Lint
run: yarn lint
- name: Format
run: yarn format:check
# - name: Unit Test
# run: yarn test
# - name: E2E
# run: yarn test:e2e
- name: Build
run: yarn build