Skip to content

Commit

Permalink
[전체] - 배포 (#481)
Browse files Browse the repository at this point in the history
* ♻️ : #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
4 people authored Feb 5, 2024
1 parent 9750f00 commit fb1091d
Show file tree
Hide file tree
Showing 114 changed files with 1,011 additions and 754 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/nodejs.yml
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
32 changes: 32 additions & 0 deletions .github/workflows/sync-fork.yml
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
22 changes: 0 additions & 22 deletions src/app/(header)/_components/Content.tsx

This file was deleted.

42 changes: 0 additions & 42 deletions src/app/(header)/_components/Header/Header.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions src/app/(header)/_components/Header/index.scss

This file was deleted.

53 changes: 0 additions & 53 deletions src/app/(header)/_components/LinkIconText/LinkIconText.tsx

This file was deleted.

19 changes: 0 additions & 19 deletions src/app/(header)/_components/LinkIconText/index.scss

This file was deleted.

16 changes: 0 additions & 16 deletions src/app/(header)/_components/index.scss

This file was deleted.

31 changes: 0 additions & 31 deletions src/app/(header)/home/_components/ProgressBar/ProgressBar.tsx

This file was deleted.

Loading

0 comments on commit fb1091d

Please sign in to comment.