Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
djeck1432 committed Nov 29, 2024
1 parent 0d2f429 commit d954f54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dashboard_app_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: data_handler
POSTGRES_DB: dashboard_app
ports:
- 5432:5432
options: >-
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
sed -i 's/DB_PORT=.*/DB_PORT=5432/' .env
sed -i 's/DB_USER=.*/DB_USER=postgres/' .env
sed -i 's/DB_PASSWORD=.*/DB_PASSWORD=postgres/' .env
sed -i 's/DB_NAME=.*/DB_NAME=data_handler/' .env
sed -i 's/DB_NAME=.*/DB_NAME=dashboard_app/' .env
- name: Wait for Database to be Ready
run: |
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Create Test Database
run: |
PGPASSWORD=postgres psql -h 127.0.0.1 -p 5432 -U postgres -c "CREATE DATABASE data_handler;"
PGPASSWORD=postgres psql -h 127.0.0.1 -p 5432 -U postgres -c "CREATE DATABASE dashboard_app;"
- name: Run Tests for Dashboard_App
working-directory: ./apps/dashboard_app
Expand Down

0 comments on commit d954f54

Please sign in to comment.