Skip to content

Commit 3bd06d2

Browse files
authored
Merge pull request #181 from kakao-tech-campus-3rd-step3/release/2025-10-17
전남대 4팀 FE 6차 코드 리뷰
2 parents 59bc6ab + dffd841 commit 3bd06d2

File tree

97 files changed

+3199
-1805
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+3199
-1805
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 136 deletions
This file was deleted.

.github/workflows/fe-ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
branches: ['develop']
66
push:
7-
branches: ['main']
7+
branches: ['develop']
88

99
jobs:
1010
install-dependencies:
@@ -114,7 +114,7 @@ jobs:
114114
deploy:
115115
runs-on: ubuntu-latest
116116
needs: build
117-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
117+
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
118118
environment: dongarium
119119
steps:
120120
- name: Download build artifact
@@ -132,5 +132,5 @@ jobs:
132132

133133
- name: Deploy to S3 and invalidate CloudFront
134134
run: |
135-
aws s3 sync ./dist s3://${{ secrets.S3_BUCKET }} --delete --acl public-read
135+
aws s3 sync ./dist s3://${{ secrets.S3_BUCKET }} --delete
136136
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} --paths "/*"

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx lint-staged

0 commit comments

Comments
 (0)