File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -40,19 +40,19 @@ jobs:
4040 - name : Install dependencies
4141 run : yarn install
4242
43- - name : Install PostgreSQL Client and Run Migrations
44- run : |
45- # Install PostgreSQL client
46- sudo apt-get update
47- sudo apt-get install -y postgresql-client
48-
49- # Run migrations (they are idempotent with IF NOT EXISTS)
50- echo "Running database migrations..."
51- psql $DATABASE_URL -f migrations.sql || {
52- echo "❌ Database migrations failed"
53- exit 1
54- }
55- echo "✅ Database migrations completed successfully"
43+ - name : Install PostgreSQL Client and Run Migrations
44+ run : |
45+ # Install PostgreSQL client
46+ sudo apt-get update
47+ sudo apt-get install -y postgresql-client
48+
49+ # Run migrations (they are idempotent with IF NOT EXISTS)
50+ echo "Running database migrations..."
51+ psql $DATABASE_URL -f migrations.sql || {
52+ echo "❌ Database migrations failed"
53+ exit 1
54+ }
55+ echo "✅ Database migrations completed successfully"
5656
5757 - name : Test Database Extensions
5858 run : |
You can’t perform that action at this time.
0 commit comments