-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ♻️ : #460 - 페이지 파일, 컴포넌트 파일 내 import문 index 파일 import 하도록 경로 수정 * ♻️ : #460 - hooks 폴더 내 index 파일 정의 * ♻️ : #460 - hooks/apis 폴더 내 index 파일 정의 * ♻️ : #460 - utils 폴더 내 index 파일 정의 및 decideRamdomIconNumber 유틸함수 삭제 * ♻️ : #467 - 주소 확인 정규식 const로 분리 * ♻️ : #467 - navigation 비즈니스 로직 분리 * ♻️ : #467 - 사용하지 않는 header 컴포넌트 삭제 * ♻️ : #467 - tabprops 타입 분리 * ♻️ : #467 - tab 컴포넌트 비즈니스 로직 분리 * ♻️ : #467 - ExplorePlans 비즈니스 로직 분리 * ♻️ : #467 - NewPlan 컴포넌트 비즈니스 로직 분리 * ♻️ : #467 - ProgressBarProps 타입 분리 * ♻️ : #467 - ProgressBar 컴포넌트 비즈니스 로직 분리 * ♻️ : #467 - default function으로 변경 * ♻️ : #467 - MyPlan 컴포넌트 비즈니스 로직 분리 * ♻️ : #467 - home 비즈니스 로직 분리 * ♻️ : #467 - feedback/[planId] 비즈니스 로직 분리 * ♻️ : #467 - EvaluateRadio 컴포넌트 비즈니스 로직 분리 * ♻️ : #467 - feedback/evaluate 비즈니스 로직 분리 * ♻️ : #467 - 빌드오류 해결 * ✨ : #472 - PR시 build 작업 추가 (CI) * [노철] - 비지니스 로직 분리 (#471) * ♻️ : #468 - 마이페이지 로직 분리 * ♻️ : #468 - 계획 페이지 로직 분리 * ♻️ : #468 - 계획 수정 페이지 로직 분리 * ♻️ : #468 - 필요없는 훅 제거 * ♻️ : #468 - 함수 대신 컴포넌트 return 변경 * ♻️ : #468 - 함수 대신 컴포넌트로 변경 * ♻️ : #474 - app 파일 구조 변경 * 🐛 : #472 - 브랜치명 develop -> dev로 변경 * 🐛 : #472 - node 버전 20으로 변경 * ✨ : #477 - 포크 자동화 ACTION 추가 --------- Co-authored-by: 박민우 <[email protected]> Co-authored-by: 박민우 <[email protected]> Co-authored-by: 박노철 <[email protected]>
- Loading branch information
1 parent
9750f00
commit fb1091d
Showing
114 changed files
with
1,011 additions
and
754 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,27 @@ | ||
name: Node.js CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: npm install, and build | ||
run: | | ||
cd src | ||
npm install | ||
npm run build | ||
env: | ||
CI: true |
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,32 @@ | ||
name: Synchronize to forked repo | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
sync: | ||
name: Sync forked repo | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout main | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.SYNC_FORK_TOKEN }} | ||
fetch-depth: 0 | ||
ref: main | ||
|
||
- name: Add remote-url | ||
run: | | ||
git remote add forked-repo https://MinwooP:${{ secrets.SYNC_FORK_TOKEN }}@github.com/MinwooP/this-year-ajaja-fe | ||
git config user.name MinwooP | ||
git config user.email [email protected] | ||
- name: Push changes to forked-repo | ||
run: | | ||
git push -f forked-repo main | ||
- name: Clean up | ||
run: | | ||
git remote remove forked-repo |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
53 changes: 0 additions & 53 deletions
53
src/app/(header)/_components/LinkIconText/LinkIconText.tsx
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
src/app/(header)/home/_components/ProgressBar/ProgressBar.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.