Skip to content

Commit 2ddaf34

Browse files
committed
fix: 액션에서 서버 실행 후 무한 대기하는 오류 해결
1 parent 378e66c commit 2ddaf34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/process-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
3636
- name: Start application server
3737
run: |
38-
pnpm dev
38+
pnpm dev &
3939
env:
4040
CI: true
4141

4242
- name: Wait for server
43-
run: npx wait-on http://localhost:3000
43+
run: npx wait-on http://localhost:3000 --timeout 8000
4444

4545
- name: Run Cypress tests
4646
uses: cypress-io/github-action@v6

0 commit comments

Comments
 (0)