Skip to content

Commit 880b6d8

Browse files
authored
Merge pull request #30 from SOPT-36-NINEDOT/init/#14/cicd
[Fix]: CI/CD 환경을 로컬과 동일하게 설정
2 parents a2fe2ce + 7ed7df8 commit 880b6d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Node.js
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: '20'
25+
node-version: '22'
2626
cache: 'pnpm'
2727
cache-dependency-path: 'pnpm-lock.yaml'
2828

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
- name: Set up Node.js
2929
uses: actions/setup-node@v4
3030
with:
31-
node-version: '20'
31+
node-version: '22'
3232
cache: 'pnpm'
3333
cache-dependency-path: 'pnpm-lock.yaml'
34-
34+
3535
- name: Install dependencies
3636
run: pnpm install --frozen-lockfile
37-
37+
3838
- name: Run Lint
3939
run: pnpm lint
4040

0 commit comments

Comments
 (0)