Skip to content

Commit

Permalink
Merge pull request #5 from mash-up-kr/chore/repository-templates
Browse files Browse the repository at this point in the history
Chore: CodeOwners파일 추가 및 PR Template, Workflow(Build) 파일 추가
  • Loading branch information
J-Hoplin authored May 18, 2024
2 parents 8467cf1 + a8559a9 commit ffbdb76
Show file tree
Hide file tree
Showing 4 changed files with 3,534 additions and 1,450 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @JonghunAn @Marades @hye-on @J-Hoplin
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## PR 개요

### PR 유형

### PR 내용

## 추가 및 변경 사항

> API endpoint와 추가 혹은 변경된 사항을 적어주세요!
## PR 중점사항

> 리뷰어가 중점적으로 봐야하는 부분에 대해 적어주세요!
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
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
Loading

0 comments on commit ffbdb76

Please sign in to comment.