Skip to content

Commit 3634760

Browse files
authored
fix: 의존성 설치를 먼저 하고 빌드하도록 수정 (#1005)
* fix: 의존성 설치를 먼저 하고 빌드하도록 수정 * chore: 사용하지 않는 주석 제거
1 parent 5c87b69 commit 3634760

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/frontend-prod-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444
restore-keys: |
4545
${{ runner.os }}-webpack-
4646
47-
# 5. Prod 환경으로 빌드
48-
- name: Build for Prod environment
49-
run: npm run build
50-
5147
# 3. 의존성 설치
5248
- name: Install Dependencies
5349
run: npm install
5450

51+
# 5. Prod 환경으로 빌드
52+
- name: Build for Prod environment
53+
run: npm run build
54+
5555
# 4. 환경변수 파일 github secret에서 가져와서 생성
5656
- name: Create environments from github secrets
5757
run: |

client/src/utils/NetworkStateCatcher.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const NetworkStateCatcher = () => {
88
};
99

1010
const handleNetworkOffline = () => {
11-
// TODO: (@weadie) 토스트 높이는 z-index 이슈가 해결되면 반영할 예정입니다.
1211
toast.error('네트워크 연결 상태를 확인해주세요.', {
1312
isAutoClosed: false,
1413
position: 'bottom',

0 commit comments

Comments
 (0)