-
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 #5 from mash-up-kr/chore/repository-templates
Chore: CodeOwners파일 추가 및 PR Template, Workflow(Build) 파일 추가
- Loading branch information
Showing
4 changed files
with
3,534 additions
and
1,450 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @JonghunAn @Marades @hye-on @J-Hoplin |
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,13 @@ | ||
## PR 개요 | ||
|
||
### PR 유형 | ||
|
||
### PR 내용 | ||
|
||
## 추가 및 변경 사항 | ||
|
||
> API endpoint와 추가 혹은 변경된 사항을 적어주세요! | ||
## PR 중점사항 | ||
|
||
> 리뷰어가 중점적으로 봐야하는 부분에 대해 적어주세요! |
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,30 @@ | ||
name: Application Build Test | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- development | ||
paths: | ||
- 'src/**' | ||
- '.github/workflows/**' | ||
run-name: Application Build Test | ||
jobs: | ||
build: | ||
name: Build Test | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Repository Checkout | ||
uses: actions/checkout@v4 | ||
- name: Node.js runtime setting | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: pnpm settings | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
version: 8 | ||
run_install: false | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: Check Application Build | ||
run: pnpm build |
Oops, something went wrong.