홈 화면(/ 경로) UI 개선
#46
Workflow file for this run
This file contains hidden or 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: | |
| branches: | |
| - "*" | |
| jobs: | |
| build-test-lint-typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 코드 체크아웃 | |
| uses: actions/checkout@v4 | |
| - name: Node.js 설정 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| - name: 의존성 설치 | |
| run: npm ci | |
| - name: Vite 프로젝트 빌드 | |
| run: npm run build | |
| - name: 린트 체크 | |
| run: npm run lint:check | |
| - name: 프리티어 체크 | |
| run: npm run prettier:check | |
| - name: 타입 체크 | |
| run: npm run type:check | |
| - name: 테스트 실행 | |
| run: npm run test |