-
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: [FE] ncp object storage에서 s3, cloudfront를 사용한 배포로 변경 (#28)
merge: [FE] ncp object storage에서 s3, cloudfront를 사용한 배포로 변경 (#28)
- Loading branch information
Showing
2 changed files
with
35 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: frontEnd CI | ||
on: | ||
pull_request: | ||
branches: [FE/release, dev, main] | ||
jobs: | ||
build-test-deploy: | ||
runs-on: ubuntu-22.04 | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.16.0] | ||
steps: | ||
- name: ✅ 코드 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
- name: ⬇️ 의존성 설치 | ||
working-directory: ./frontEnd | ||
run: npm install | ||
|
||
- name: ✅ 유닛 테스트 | ||
working-directory: ./frontEnd | ||
run: npm test | ||
|
||
- name: 📦 프로젝트 빌드 | ||
working-directory: ./frontEnd | ||
run: npm run build |
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