Skip to content

Commit

Permalink
[BUGFIX] vercel 배포 에러 해결 (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyMan0 authored Apr 6, 2024
1 parent ec622ec commit 84c33d9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: deploy with vercel

on:
push:
branches: [main]
branches: ['main']

jobs:
chromatic:
Expand All @@ -20,14 +20,6 @@ jobs:
with:
node-version: 20.x

- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: yarn-deps-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-deps-${{ hashFiles('yarn.lock') }}
- name: Chromatic에 배포
id: chromatic
uses: chromaui/action@latest
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"packageManager": "[email protected]",
"readme": "ERROR: No README data found!",
"_id": "[email protected]"
}
1 change: 0 additions & 1 deletion src/app/test/_components/TestForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const TestForm = () => {
const [isLoading, setIsLoading] = useState(false);

return (
// 테스트 시작 랜딩 페이지 다음 PR SSR로 분리 예정
<>
{isLoading && (
<TestLoadingPage onReset={() => setStep('홈')} onLoading={() => setIsLoading(false)} />
Expand Down

0 comments on commit 84c33d9

Please sign in to comment.