-
Notifications
You must be signed in to change notification settings - Fork 1
PR 템플릿 수정 및 lint check actions 추가 #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ba14323
feat : Pr 템플릿에 리뷰규칙 추가
caseBread 1c05043
fix : PR템플릿 이름 수정
caseBread d32333b
fix : lint checker추가
caseBread d80ff91
fix : npm -> pnpm
caseBread 508b899
fix : lint actions
caseBread 230f50e
feat : pnpm설치
caseBread a7b57db
fix : pnpm cache제거
caseBread 08e1d5f
fix
caseBread d016a3c
fix
caseBread File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,33 @@ | ||
| name: Lint Checker | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened] | ||
|
|
||
| jobs: | ||
| lint: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v4 | ||
| with: | ||
| version: 7 | ||
| run_install: false | ||
|
|
||
| - name: Setup Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 20 | ||
|
|
||
| - name: Install pnpm | ||
| run: npm install -g pnpm | ||
|
|
||
| - name: Install deps | ||
| run: pnpm install | ||
|
|
||
| - name: Run lint | ||
| run: pnpm lint |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1-P3 규칙에 사용된
(Comment)라는 표현이 GitHub 리뷰 기능('Comment', 'Approve', 'Request changes')과 관련하여 혼동을 줄 수 있습니다. GitHub에서 'Comment'는 PR 병합을 막지 않는 중립적인 행동입니다.만약 P1-P3 리뷰 의견이 병합 전에 수정이 필요한 변경 사항을 의미한다면,
(변경 요청)과 같이 더 명확한 용어를 사용하는 것이 좋습니다. 이렇게 하면 리뷰어와 작성자 모두가 해당 코멘트에 대해 기대되는 조치를 명확히 이해하는 데 도움이 될 것입니다.