chore: prepare 1.5.0 release, update deps (#1962)

This commit is contained in:
Matti Nannt
2024-01-26 11:28:36 +01:00
committed by GitHub
parent 4dfe1d9af0
commit 6340d499b9
21 changed files with 3033 additions and 2066 deletions
+10 -1
View File
@@ -33,7 +33,16 @@ jobs:
- name: Start PostgreSQL
run: |
pnpm db:start
cd packages/database && pnpm db:up &
for attempt in {1..20}; do
if nc -zv localhost 5432; then
echo "Ready"
break
fi
echo "Waiting..."
sleep 5
done
pnpm db:migrate:dev
- name: Build App in dev mode without external dependencies
run: |