Skip to content

Commit

Permalink
[test] feat(test): test
Browse files Browse the repository at this point in the history
  • Loading branch information
rlatkd committed Jun 28, 2024
1 parent 7c7d5d8 commit a084552
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/FE_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node-${{ hashFiles('client/package-lock.json') }}

# 캐싱 여부 출력
- if: steps.npm-cache.outputs.cache-hit == 'true'
Expand All @@ -32,8 +32,10 @@ jobs:

# 캐시가 없거나 다른 경우에만 모듈 설치 -> 배포 시간 단축
- name: Install Dependencies
working-directory: client
if: steps.cache.outputs.cache-hit != 'true'
run: npm install

- name: Build Npm
working-directory: client
run: npm run build

0 comments on commit a084552

Please sign in to comment.