chore(repo): GitHub Actions CI 파이프라인 구성 - #7
Merged
Conversation
- .github/workflows/ci.yml 추가 - PR → develop, main 트리거 시 자동 실행 - 각 패키지 type check (tsc) + mobile lint (expo lint) - apps/web, apps/api에 typecheck 스크립트 추가 - 테스트 step은 플레이스홀더로 추가 (테스트 코드 작성 후 활성화) Closes #3 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
pnpm/action-setup@v4는 package.json의 packageManager 필드를 자동으로 읽으므로 version 명시 제거. 중복 지정 시 ERR_PNPM_BAD_PM_VERSION 발생. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
주석만 있는 파일은 TypeScript가 모듈로 인식하지 못해 TS2306 에러 발생.
export {}로 빈 모듈 선언.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
meteorqz6
reviewed
Jun 6, 2026
| // 예: export * from './auth' | ||
| // export * from './schedule' | ||
|
|
||
| export {} |
Contributor
There was a problem hiding this comment.
[질문]
이 코드가 추가되어야 하는 이유가 무엇인가요?
Contributor
Author
There was a problem hiding this comment.
주석만 있는 파일이라 TypeScript가 모듈로 인식하지 못해서 export {}를 추가해 빈 모듈로 선언해주었습니다!
meteorqz6
approved these changes
Jun 6, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
개요
PR이 열릴 때마다 type check·lint를 자동으로 실행하는 CI 파이프라인을 구성한다.
Closes #3
변경 사항
.github/workflows/ci.yml추가 — PR →develop,main트리거apps/web/package.json—typecheck스크립트 추가 (tsc --noEmit)apps/api/package.json—typecheck스크립트 추가 (tsc --noEmit)변경 유형
chore— 빌드·설정 변경영향 범위
repo— 루트 설정·CI/CD·문서테스트 방법
체크리스트
packages/shared) 업데이트 (해당 없음)리뷰 포인트
pnpm/action-setup@v4+actions/setup-node@v4cache: pnpm조합으로 의존성 캐싱 적용main·develop브랜치 보호에 상태 체크 필수 조건 추가 필요