Skip to content

Commit d2b7332

Browse files
committed
ci: Corepack 활성화 및 yarn install 명령어 수정
- Corepack을 활성화하는 단계 추가 - yarn install 명령어에 --immutable-cache 옵션 추가하여 캐시 사용 방식 개선
1 parent daf4e26 commit d2b7332

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ jobs:
1919
node-version: '20'
2020
cache: 'yarn'
2121

22+
- name: Enable Corepack
23+
run: corepack enable
24+
2225
- name: Install dependencies
23-
run: yarn install --immutable
26+
run: yarn install --immutable --immutable-cache
2427

2528
- name: Build shared packages
2629
run: |

0 commit comments

Comments
 (0)