Skip to content

Commit

Permalink
docs: 1단계 구현 내용 작성
Browse files Browse the repository at this point in the history
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
Hyoeunkh committed Aug 5, 2024
1 parent 6ebeb22 commit 0a0534b
Show file tree
Hide file tree
Showing 28 changed files with 852 additions and 220 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
.env.development.local
.env.test.local
.env.production.local
.env

npm-debug.log*
yarn-debug.log*
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# 카카오 테크 캠퍼스 - 프론트엔드 카카오 선물하기 편

## 1단계 - API 명세 협의 & 반영
1. 카카오로 로그인하기 버튼 생성
2. 옵션 선택으로 변경
3. 주문 목록 페이지 구현
4. 수정된 API 반영
Loading

0 comments on commit 0a0534b

Please sign in to comment.