Skip to content

Commit da5c18c

Browse files
committed
chore: add environment variables to e2e-test workflow
1 parent d36de76 commit da5c18c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.env.test

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ DATABASE_URL="postgresql://diego@localhost:5432/fullstock_test?schema=public"
33
# Admin Database (for database creation/deletion)
44
ADMIN_DB_NAME=postgres
55

6-
# Culqui Keys
7-
CULQI_PRIVATE_KEY="sk_test_xxx"
8-
VITE_CULQI_PUBLIC_KEY="pk_test_xxx"
9-
106
# Cloud Storage base url
117
CS_BASE_URL="https://fullstock-images.s3.us-east-2.amazonaws.com"
128

.github/workflows/tests.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ jobs:
6161
e2e-test:
6262
runs-on: ubuntu-latest
6363
needs: [test]
64+
env:
65+
CS_BASE_URL: "https://fullstock-images.s3.us-east-2.amazonaws.com"
66+
CULQI_PRIVATE_KEY: "sk_test_EC8oOLd3ZiCTKqjN"
67+
VITE_CULQI_PUBLIC_KEY: "pk_test_Ws4NXfH95QXlZgaz"
68+
DATABASE_URL: "postgresql://diego@localhost:5432/fullstock_test?schema=public"
6469
services:
6570
postgres:
6671
image: postgres:15

0 commit comments

Comments
 (0)