[Setting/#130] ESLint warning 정리 및 any 타입 제거 리팩토링 #7
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: | |
| push: | |
| branches: | |
| - develop | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| lint-and-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 레포지토리 체크아웃 | |
| uses: actions/checkout@v4 | |
| - name: pnpm 설치 | |
| uses: pnpm/action-setup@v5 | |
| - name: Node.js 설치 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: 의존성 설치 | |
| run: pnpm install --frozen-lockfile | |
| - name: ESLint 검사 | |
| run: pnpm lint | |
| - name: Build 검사 | |
| run: pnpm build |