Skip to content

Commit d040d6c

Browse files
committed
Add environment variables for MongoDB credentials in CI workflow
1 parent fbc7f93 commit d040d6c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ on:
88
description: "Test execution result"
99
value: ${{ jobs.code-coverage.outputs.result }}
1010

11+
env:
12+
MONGO_URI: ${{ secrets.MONGO_URI }}
13+
MONGO_USERNAME: ${{ secrets.MONGO_USERNAME }}
14+
MONGO_PASSWORD: ${{ secrets.MONGO_PASSWORD }}
15+
1116
jobs:
1217
unit-testing:
1318
name: Unit Testing

0 commit comments

Comments
 (0)