-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from Guzzing/feat/14-feature-cicd
CI 워크플로우 제거 및 허스키 추가
- Loading branch information
Showing
10 changed files
with
498 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,4 +32,13 @@ jobs: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_S3_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_ACCESS_KEY }} | ||
AWS_REGION: 'ap-northeast-2' | ||
SOURCE_DIR: 'dist' # React 빌드 결과물 디렉터리 | ||
SOURCE_DIR: 'dist' # React 빌드 결과물 디렉터리 | ||
|
||
- name: Invalidate CloudFront | ||
uses: chetan/[email protected] | ||
env: | ||
DISTRIBUTION: ${{ secrets.CLOUDFRONT_ID }} | ||
PATHS: '/*' | ||
AWS_REGION: 'ap-northeast-2' | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_S3_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_ACCESS_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
{ | ||
"semi" : false, | ||
"trailling Comma" : "none", | ||
"trailingComma" : "none", | ||
"arrowParens": "always", | ||
"singleQuote": true, | ||
"tab width" : 2, | ||
"printwidth" : 80 | ||
|
||
"tabWidth" : 2, | ||
"printWidth" : 80 | ||
} |
Oops, something went wrong.