[DEVOPS #10]: expo 빌드 및 테스트 머지 조건 GitHub Workflow 추가 - #11
Merged
Conversation
- Add .nvmrc for consistent Node.js version (22) - Split workflow into 4 parallel jobs: lint, typecheck, build, test - Add concurrency settings to cancel outdated runs - Use expo-doctor for health check - Make test step conditional with --if-present flag Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add placeholder images for app icons (icon.png, favicon.png, splash-icon.png) - Add Android adaptive icon images (foreground, background, monochrome) - Update expo to 54.0.31 and expo-constants to 18.0.13 - Fixes expo-doctor validation errors Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Collaborator
|
고생하셨어요~ 버전업 속도가 빠르군요ㅋㅋ |
Contributor
Author
|
@smilevictory 어프루브 한번 부탁드려요~ |
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.
관련 이슈
변경 사항
.nvmrc파일 추가 (Node.js 22 버전 지정)assets/images에 임시 파일을 넣어두었습니다lint,typecheck,build,testconcurrency설정으로 동일 PR 새 커밋 시 이전 실행 취소expo-doctor로 Expo 환경 검증expo export --platform web으로 번들 빌드 검사npm run test --if-present로 테스트 스크립트 조건부 실행CI 워크플로우 구조
linttypechecktsc --noEmit)buildtestPR 머지 조건 설정 방법
GitHub 저장소 Settings > Branches > Branch protection rules에서
dev,main브랜치에 대해 Required status checks로 위 4개 Job을 추가하면 됩니다.