Skip to content

Commit

Permalink
fix: wait for 3005
Browse files Browse the repository at this point in the history
  • Loading branch information
scopsy committed Oct 21, 2024
1 parent effb5ac commit a7e6a34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Wait for Next.js to start
run: |
timeout=30
while ! nc -z localhost 3000; do
while ! nc -z localhost 3005; do
if [ $timeout -le 0 ]; then
echo "Timed out waiting for Next.js to start"
exit 1
Expand Down
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.rulers": [100]
"editor.rulers": [
100
],
"cSpell.words": [
"novu"
]
}

0 comments on commit a7e6a34

Please sign in to comment.