Skip to content

[Setting/#130] ESLint warning 정리 및 any 타입 제거 리팩토링 #7

[Setting/#130] ESLint warning 정리 및 any 타입 제거 리팩토링

[Setting/#130] ESLint warning 정리 및 any 타입 제거 리팩토링 #7

Workflow file for this run

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