-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.0
- Loading branch information
Showing
119 changed files
with
2,645 additions
and
2,023 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,38 @@ | ||
--- | ||
name: BUG REPORT | ||
about: 버그 내용을 기술합니다. | ||
title: "[bug]" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**버그 설명** | ||
어떤 버그가 발생하는지 정확하게 기술해주세요. | ||
|
||
**재현 방법** | ||
재현 방법은 다음과 같이 기술합니다. | ||
1. A 페이지에 접속 | ||
2. B 버튼 클릭 후 | ||
3. C 행동을 취하면 | ||
4. 다음과 같은 에러를 볼 수 있음. | ||
|
||
**정상 동작** | ||
예상했던 정상 동작을 기술해주세요. | ||
|
||
**스크린샷** | ||
가능하다면, 스크린샷 혹은 영상으로 버그를 보여주세요. | ||
|
||
**데스크탑 환경 정보** | ||
- OS: [e.g. Windows 11] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**모바일 환경 정보** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**추가 설명** | ||
해당 버그에 대해서 추가로 기술할 내용에 대해 작성해주세요. |
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,24 @@ | ||
--- | ||
name: TODO | ||
about: 새로운 작업에 대한 할 일을 기술합니다. | ||
title: "[todo]" | ||
labels: todo | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 분류 | ||
- fix, feature, refactor .. | ||
|
||
## 목표 | ||
- 해당 작업에서 이루고자 하는 목표를 작성해주세요. (기대하는 동작, 완성 후 모습 등..) | ||
|
||
## 기한 | ||
- 해당 작업의 기한을 명시해주세요. | ||
|
||
## 할 일 | ||
- [ ] A | ||
- [ ] B | ||
|
||
## 추가 설명 | ||
- 해당 작업에 대한 추가 설명을 작성해주세요 |
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,15 @@ | ||
--- | ||
name: 제안 / 요청 | ||
about: 프로젝트에 관련된 아이디어 제안 / 요청 사항을 기술합니다. | ||
title: "[request]" | ||
labels: request | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 분류 | ||
- 해당 아이디어 혹은 제안에 대한 분류를 작성해주세요 | ||
- 수정사항 / 기능 / 리팩토링 / UI/UX ... | ||
|
||
## 설명 | ||
- 자세히 제안에 대한 내용을 기술해주세요. |
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,35 +1,35 @@ | ||
# .github/workflows/chromatic.yml | ||
# # .github/workflows/chromatic.yml | ||
|
||
# Workflow name | ||
name: 'Chromatic' | ||
# # Workflow name | ||
# name: 'Chromatic' | ||
|
||
# Event for the workflow | ||
on: | ||
pull_request: | ||
branches: [ dev ] | ||
paths: [ '**.stories.ts', '**.stories.tsx' ] | ||
# # Event for the workflow | ||
# on: | ||
# pull_request: | ||
# branches: [ dev ] | ||
# paths: [ '**.stories.ts', '**.stories.tsx' ] | ||
|
||
# List of jobs | ||
jobs: | ||
chromatic-deployment: | ||
# Operating System | ||
runs-on: ubuntu-latest | ||
# Job steps | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install dependencies | ||
# 👇 Install dependencies with the same package manager used in the project (replace it as needed), e.g. yarn, npm, pnpm | ||
run: cd 42manito && yarn | ||
# 👇 Adds Chromatic as a step in the workflow | ||
- name: Publish to Chromatic | ||
id: chromatic | ||
uses: chromaui/action@v1 | ||
# Chromatic GitHub Action options | ||
with: | ||
# 👇 Chromatic projectToken, refer to the manage page to obtain it. | ||
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | ||
workingDir: 42manito/ | ||
# Option to prevent the workflow from failing | ||
exitZeroOnChanges: true | ||
- name: Publish Summary | ||
run: echo -e "| Results | |\n| --- | --- |\n| Build Results | ${{steps.chromatic.outputs.buildUrl}} |\n| Storybook Preview | ${{steps.chromatic.outputs.storybookUrl}} |\n| Component Count | ${{steps.chromatic.outputs.componentCount}} |" >> $GITHUB_STEP_SUMMARY | ||
# # List of jobs | ||
# jobs: | ||
# chromatic-deployment: | ||
# # Operating System | ||
# runs-on: ubuntu-latest | ||
# # Job steps | ||
# steps: | ||
# - uses: actions/checkout@v1 | ||
# - name: Install dependencies | ||
# # 👇 Install dependencies with the same package manager used in the project (replace it as needed), e.g. yarn, npm, pnpm | ||
# run: cd 42manito && yarn | ||
# # 👇 Adds Chromatic as a step in the workflow | ||
# - name: Publish to Chromatic | ||
# id: chromatic | ||
# uses: chromaui/action@v1 | ||
# # Chromatic GitHub Action options | ||
# with: | ||
# # 👇 Chromatic projectToken, refer to the manage page to obtain it. | ||
# projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | ||
# workingDir: 42manito/ | ||
# # Option to prevent the workflow from failing | ||
# exitZeroOnChanges: true | ||
# - name: Publish Summary | ||
# run: echo -e "| Results | |\n| --- | --- |\n| Build Results | ${{steps.chromatic.outputs.buildUrl}} |\n| Storybook Preview | ${{steps.chromatic.outputs.storybookUrl}} |\n| Component Count | ${{steps.chromatic.outputs.componentCount}} |" >> $GITHUB_STEP_SUMMARY |
Binary file added
BIN
+3.86 MB
42manito/.yarn/cache/@esbuild-darwin-x64-npm-0.18.20-767fe27d1b-8.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.72 KB
42manito/.yarn/cache/@types-gtag.js-npm-0.0.13-6f0ba6a7ea-9c56c96157.zip
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
NEXT_PUBLIC_GA_ID="" | ||
NEXT_PUBLIC_DEV_URL="https://api.dev.42manito.com" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Oops, something went wrong.