Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎉 auth 관련 로직 및 context 제공 #37

Merged
merged 7 commits into from
Nov 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 8 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'
cache: 'npm'
cache-dependency-path: ./pnpm-lock.yaml

- uses: pnpm/action-setup@v2
with:
version: 8

# package.json에 명시된 의존성을 설치합니다.
- name: Install Dependencies
run: npm install
run: pnpm install

# 아래 단계에서 .env 파일을 생성하고 시크릿 값을 설정합니다.
- name: Set Environment Variables
Expand All @@ -46,11 +50,11 @@ jobs:

# 빌드를 수행합니다.
- name: Build
run: npm run build
run: pnpm build

# 테스트를 수행합니다.
- name: Run tests
run: npm run test
run: pnpm test

- name: if_fail
uses: actions/github-script@v4
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"clsx": "^2.0.0",
"lucide-react": "^0.291.0",
"date-fns": "^2.30.0",
"next": "13.5.6",
"js-cookie": "^3.0.5",
"next": "14.0.1",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
Expand All @@ -54,6 +55,7 @@
"@storybook/theming": "^7.5.1",
"@tanstack/eslint-plugin-query": "^5.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/js-cookie": "^3.0.5",
"@types/node": "^20",
"@types/react": "^18.2.33",
"@types/react-dom": "^18",
Expand Down
Loading