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

Mobile First 레이아웃 구현 #5

Merged
merged 14 commits into from
Jul 24, 2024
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
6 changes: 6 additions & 0 deletions .cz-config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// https://kjm99d.tistory.com/20

module.exports = {
types: [
{ value: "✨ feat", name: "✨ feat: 새로운 기능 추가" },
Expand All @@ -11,6 +13,10 @@ module.exports = {
value: "♻️ refactor",
name: "♻️ refactor: 버그 수정이나 새로운 기능 추가가 아닌 코드 변경",
},
{
value: "👷 cicd",
name: "👷 cicd: CICD 관련 수정",
},
{
value: "⚡️ perf",
name: "⚡️ perf: 성능을 개선하는 코드 변경",
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,18 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Set up Node.js version
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.NODE_VERSION }}
cache: "pnpm"
cache-dependency-path: '**/pnpm-lock.yaml'

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: "PR Test"

on:
pull_request:
types: [opened, reopened]
branches: [main]
types: [opened, reopened, synchronize]
branches: [main, develop]

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@
"formatting": "prettier --write '**/*.{ts,tsx}' && eslint --fix ."
},
"dependencies": {
"@radix-ui/react-navigation-menu": "^1.2.0",
"@tanstack/react-query": "^5.50.1",
"@tanstack/react-query-devtools": "^5.50.1",
"clsx": "^2.1.1",
"next": "14.2.4",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.4.0",
"tailwindcss-radix": "^3.0.3",
"uuid": "^10.0.0",
"zod": "^3.23.8",
Expand Down Expand Up @@ -47,7 +50,7 @@
"jiti": "^1.21.6",
"postcss": "^8",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"tailwindcss": "^3.4.6",
"typescript": "^5"
},
"config": {
Expand Down
Loading
Loading