Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e173faf
feat(DEVING-24): 로그인 페이지 markup 작성
dbswl701 Feb 17, 2025
edf07b8
feat(DEVING-24): react-hook-form 연결
dbswl701 Feb 17, 2025
f65ebf5
feat(DEVING-24): 회원가입 markup
dbswl701 Feb 17, 2025
13cbf75
Merge branch 'feat/component/GNB/DEVING-15' of https://github.com/Moi…
dbswl701 Feb 18, 2025
c1a0e30
feat(DEVING-24): 로그인 유효성 검사 및 api 연동
dbswl701 Feb 19, 2025
40d2081
Merge branch 'feat/component/DEVING-9' of https://github.com/MoimServ…
dbswl701 Feb 19, 2025
aaa2f4a
Merge branch 'feat/component/DEVING-9' of https://github.com/MoimServ…
dbswl701 Feb 19, 2025
aa07f29
Merge branch 'feat/component/DEVING-9' of https://github.com/MoimServ…
dbswl701 Feb 20, 2025
0d13ade
feat(DEVING-24): 디바운스를 이용해 유효성 검사 1초뒤에 실행
dbswl701 Feb 20, 2025
2955619
setting(DEVING-24): tanstack query, zustand 세팅
dbswl701 Feb 20, 2025
8f6d94f
feat(DEVING-24): 로그인 성공 시 토큰을 쿠키로 저장
dbswl701 Feb 20, 2025
8f0fb82
fix(DEVING-24): 로그인이 이미 된 상태라면 메인페이지로 이동 로직 수정
dbswl701 Feb 21, 2025
958a6b5
refactor(DEVING-24): 로그인 로직과 ui 분리 및 리펙토링
dbswl701 Feb 21, 2025
75524c2
Merge branch 'feat/markup/DEVING-10' of https://github.com/MoimServic…
dbswl701 Feb 21, 2025
3f0644c
refactor(DEVING-24): 코드리뷰 반영 리펙토링
dbswl701 Feb 24, 2025
fb7e601
fix(DEVING-24): 1초마다 리렌더링 되던 문제 해결
dbswl701 Feb 24, 2025
da8c05f
Merge branch 'feat/markup/DEVING-10' of https://github.com/MoimServic…
dbswl701 Feb 24, 2025
e0f2174
fix(DEVING-24): 인풋 자동완성 색상 수정
dbswl701 Feb 24, 2025
823888d
feat(DEVING-24): 로그인 더미 버튼 추가
dbswl701 Feb 25, 2025
08d7377
chore(DEVING-24): github action yml 파일에 .env 생성 로직 추가
dbswl701 Feb 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
id: install
run: npm ci

- name: Create .env file
run: |
echo "NEXT_PUBLIC_API_URL=${{ secrets.NEXT_PUBLIC_API_URL }}" >> .env
echo "NEXT_TOKEN_MAX_AGE=${{ secrets.NEXT_TOKEN_MAX_AGE }}" >> .env

- name: Lint check
id: lint
continue-on-error: true
Expand Down
Loading
Loading