We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72854e commit c93a64cCopy full SHA for c93a64c
.github/workflows/backend-tests.yml
@@ -21,6 +21,19 @@ jobs:
21
22
- name: Run tests
23
working-directory: ./apps/jobboard-backend
24
+ env:
25
+ SPRING_DATASOURCE_URL: jdbc:h2:mem:testdb
26
+ SPRING_DATASOURCE_USERNAME: sa
27
+ SPRING_DATASOURCE_PASSWORD: password
28
+ MAIL_USERNAME: test
29
+ MAIL_PASSWORD: test
30
+ APP_MAIL_FROM: [email protected]
31
+ APP_ENV: test
32
+ APP_JWT_SECRET: test-secret-key-for-testing-purposes-only
33
+ APP_VERIFY_EMAIL_URL: http://localhost/verify
34
+ APP_RESET_PASSWORD_URL: http://localhost/reset
35
+ APP_GCS_BUCKET: test-bucket
36
+ APP_CORS_ALLOWED_ORIGINS: http://localhost:3000
37
run: |
38
chmod +x ./mvnw
39
./mvnw -B test
0 commit comments