Merged
Conversation
- .nvmrc를 20.20.0 (LTS)으로 고정 - package.json engines를 >=20.20.0 <21로 업데이트 - CI/CD workflow에서 node-version-file로 .nvmrc 참조
Closed
WalkthroughNode.js 버전 관리를 통일합니다. CI/CD 워크플로우를 .nvmrc 파일 참조로 변경하고, .nvmrc를 20.20.0으로 명시하며, package.json engines도 >=20.20.0으로 업데이트합니다. 개발 문서는 제거됩니다. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
choiyoungae
approved these changes
Feb 1, 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.
🚀 풀 리퀘스트 제안
📋 작업 내용
CI/CD 워크플로우와 로컬 개발 환경의 Node.js 버전 관리가 일관성 없이 설정되어 있어 이를
.nvmrc파일을 단일 소스로 통합했습니다.🔧 변경 사항
.nvmrc:20→20.20.0(Node 20 LTS 버전으로 고정)package.json: engines>=20.19 <21→>=20.20.0 <21.github/workflows/ci.yml:node-version: '20'→node-version-file: '.nvmrc'.github/workflows/deploy.yml:node-version: '20'→node-version-file: '.nvmrc'📄 기타
.nvmrc파일만 수정하면 CI/CD에도 자동 반영됩니다.closes #48
Summary by CodeRabbit
릴리스 노트
Chores
Documentation
✏️ Tip: You can customize this high-level summary in your review settings.