Skip to content

Commit 861c9e9

Browse files
committed
fix: add environment variables for database and email configuration in CI pipeline
1 parent 57b6095 commit 861c9e9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,17 @@ jobs:
8181
DB_USERNAME: postgres
8282
DB_PASSWORD: postgres
8383
DB_DATABASE: payment_records
84+
PORT: 3000
85+
FRONTEND_URL: http://localhost:5173
86+
SMTP_HOST: smtp.example.com
87+
EMAIL_USER: email@gmail.com
88+
EMAIL_PASS: your-email-password
89+
ACCESS_SECRET: secret1
90+
ACCESS_EXPIRE: 15m
91+
REFRESH_SECRET: secret2
92+
REFRESH_EXPIRE: 7d
93+
RESET_SECRET: secret3
94+
RESET_EXPIRE: 15m
8495

8596
- name: Wait for Database
8697
run: |

0 commit comments

Comments
 (0)