Skip to content

Commit 932f59c

Browse files
authored
Update README.md
1 parent 7a72599 commit 932f59c

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

README.md

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,15 @@
1919

2020
### 🚀 설치
2121

22-
- npx 사용
2322
```bash
24-
npx commitHepler
23+
#전역 설치
24+
npm install -g @seyun31/commithelper
25+
26+
# npx 사용
27+
npm @seyun31/commithelper
28+
29+
# 로컬 설치
30+
npm install @seyun31/commithelper
2531
```
2632

2733
---
@@ -106,14 +112,24 @@ $ npx commitHelper
106112

107113
### 🛠️ 개발 & 품질 보증
108114

109-
- Eslint 설정
115+
- Lint & Format
110116
```bash
111-
npm run lint
117+
npm run lint # ESLint 검사
118+
npm run format # Prettier 자동 포맷
112119
```
113-
<br>
114120

115-
- Prettier 자동 포맷
121+
- 테스트
116122
```bash
117-
npm run format
123+
npm test # Jest 테스트 실행
118124
```
125+
126+
- CI/CD
127+
128+
1️⃣ `npm ci` 의존성 설치
129+
130+
2️⃣ `npm run lint` 코드 스타일 검사
131+
132+
3️⃣ `npm run build` TypeScript build
133+
134+
4️⃣ `npm test` Jest 테스트
119135

0 commit comments

Comments
 (0)