chore(e2e): add temporary AUTH_SECRET for Playwright E2E test runs

This commit is contained in:
sumit_chaturvedi
2025-06-24 19:36:05 +05:30
parent b081027f5e
commit 6080343eaf
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -9,6 +9,8 @@ on:
- 'ui/**'
env:
# Temporary secret for CI test runs only replace with GitHub Secret later
AUTH_SECRET: "N/c6mnaS5+SWq81+819OrzQZlmx1Vxtp/orjttJSmw8="
SERVICES_TO_START: "api-dev postgres valkey worker-beat worker-dev"
DOCKER_COMPOSE_FILE: "docker-compose-dev.yml"
+1 -1
View File
@@ -12,7 +12,7 @@ async function globalSetup(config: FullConfig) {
// Start Docker containers (for CI or non-local runs)
console.log('Starting Docker containers...');
execSync(
'docker-compose -f ../docker-compose-dev.yml up -d --build api-dev postgres valkey worker-beat worker-dev',
'docker compose -f ../docker-compose-dev.yml up -d --build api-dev postgres valkey worker-beat worker-dev',
{ stdio: 'inherit' }
);