Skip to content

Commit 67d1291

Browse files
committed
#348 fix(fe): 스크립트 분리
1 parent 6e03a7e commit 67d1291

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/fe-ci.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,22 @@ jobs:
126126
restore-keys: |
127127
${{ runner.os }}-nextjs-
128128
129-
- name: Install Dependencies (if necessary)
129+
- name: Install Dependencies
130130
working-directory: src/frontend
131131
run: |
132132
pnpm install --frozen-lockfile --prefer-offline
133133
134-
- name: Run Build with Cache
135-
working-directory: ${{ github.workspace }}
134+
- name: Check Turbo Installation
135+
run: pnpm list turbo
136+
137+
- name: Run Build with Cache (Web)
138+
if: matrix.package == 'web'
139+
working-directory: apps/web
140+
run: |
141+
pnpm exec turbo build --filter=web --parallel
142+
143+
- name: Run Build with Cache (@workspace/ui)
144+
if: matrix.package == '@workspace/ui'
145+
working-directory: packages/ui
136146
run: |
137-
pnpm run turbo build --filter=${{ matrix.package }} --parallel
147+
pnpm exec turbo build --filter=@workspace/ui --parallel

0 commit comments

Comments
 (0)