Try fixing CI

This commit is contained in:
Andras Schmelczer 2025-03-16 20:37:40 +00:00
parent 75583dedbe
commit 535169a039
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 26 additions and 3 deletions

View file

@ -53,4 +53,3 @@ scripts/e2e.sh
```
And to clean up the logs & database files, run `scripts/clean-up.sh`
```

View file

@ -16,7 +16,7 @@
"build": "npm run build --workspaces",
"dev": "concurrently --kill-others \"npm run dev -w sync-client\" \"npm run dev -w obsidian-plugin\"",
"test": "npm run test --workspaces",
"lint": "eslint --fix sync-client obsidian-plugin test-client && prettier --write \"**/*.(ts|scss|json|html)\"",
"lint": "eslint --fix sync-client obsidian-plugin test-client && prettier --write \"**/*.ts\"",
"update": "ncu -u -ws"
},
"devDependencies": {
@ -27,4 +27,4 @@
"prettier": "^3.5.3",
"typescript-eslint": "8.26.1"
}
}
}

View file

@ -17,6 +17,8 @@ mkdir -p logs
cd frontend
npm run build
./scripts/wait-for-server.sh
pids=()
for i in $(seq 1 $process_count); do
node test-client/dist/cli.js > "../logs/log_${i}.log" 2>&1 &

22
scripts/wait-for-server.sh Executable file
View file

@ -0,0 +1,22 @@
#!/bin/bash
SERVER_URL="http://localhost:3000"
MAX_RETRIES=30
RETRY_INTERVAL_IN_SECONDS=5
echo "Waiting for $SERVER_URL to become available..."
count=0
while [ $count -lt $MAX_RETRIES ]; do
if curl -s -f -o /dev/null $SERVER_URL; then
echo "$SERVER_URL is now available!"
break
fi
echo "Attempt $(($count+1))/$MAX_RETRIES: $SERVER_URL not available yet, retrying in ${RETRY_INTERVAL_IN_SECONDS}s..."
sleep $RETRY_INTERVAL_IN_SECONDS
count=$(($count+1))
done
if [ $count -eq $MAX_RETRIES ]; then
echo "Error: $SERVER_URL did not become available after $MAX_RETRIES attempts."
exit 1
fi