-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 카카오로 로그인하기 버튼 생성 feat: option 선택 기능 구현 style: 코드 포매팅 feat: 주문하기 버튼 클릭 시 새 주문 생성 feat: 주문 목록 페이지 구현 feat: baseURL 환경변수 설정 feat: post wish api body 변경 feat: baseURL 환경변수 설정 style: api 협의 후 헤더 변경 feat: 주문 내역 mock 설정 feat: 주문 내역 ui 맞게 조정 refactor: 코드 포매팅 feat: 배포 feat: login, register 수정 test: @testing-library/react 최신버전 test: @testing-library/react 최신버전 test: test 잠시 주석 처리 feat: 로그인, 회원가입 api 수정
- Loading branch information
Showing
28 changed files
with
852 additions
and
220 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,43 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- step1 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
|
||
- name: Run Test | ||
run: npm test |
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
.env | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
|
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 +1,7 @@ | ||
# 카카오 테크 캠퍼스 - 프론트엔드 카카오 선물하기 편 | ||
|
||
## 1단계 - API 명세 협의 & 반영 | ||
1. 카카오로 로그인하기 버튼 생성 | ||
2. 옵션 선택으로 변경 | ||
3. 주문 목록 페이지 구현 | ||
4. 수정된 API 반영 |
Oops, something went wrong.