Skip to content

Commit a0acc5d

Browse files
committed
feature: ci 파이프라인 구성 업데이트
1 parent f41c176 commit a0acc5d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/test-ci.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [18, 19, 20, 21, 22, 23]
16+
node-version: [20, 21, 22, 23]
1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
@@ -24,9 +24,15 @@ jobs:
2424
node-version: ${{ matrix.node-version }}
2525
cache: 'pnpm'
2626

27+
- name: Enable Corepack (for pnpm)
28+
run: corepack enable
29+
2730
- name: Install pnpm
2831
run: npm install -g pnpm
2932

33+
- name: Verify pnpm installation
34+
run: pnpm --version
35+
3036
- name: Install dependencies
3137
run: pnpm install --frozen-lockfile
3238

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Velog Dashboard Project
22

3-
- 백엔드 API 서버
3+
- Velog dashboard V2 백엔드, API 서버
4+
- ***`node 20+`***
45

56
## Project Setup Guide
67

0 commit comments

Comments
 (0)