From a602cf3ad384dd63e5ee2690d3c55be38de3f9d1 Mon Sep 17 00:00:00 2001 From: Hongbo Wu Date: Wed, 15 May 2024 12:50:14 +0800 Subject: [PATCH] add gcs bucket name to the env var --- .github/workflows/run-tests.yaml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index caa9f1371..dfbd5b4de 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -88,7 +88,6 @@ jobs: yarn test timeout-minutes: 10 env: - API_ENV: local PG_HOST: localhost PG_PORT: ${{ job.services.postgres.ports[5432] }} PG_USER: app_user @@ -97,6 +96,7 @@ jobs: PG_LOGGER: debug REDIS_URL: redis://localhost:${{ job.services.redis.ports[6379] }} MQ_REDIS_URL: redis://localhost:${{ job.services.redis.ports[6379] }} + GCS_UPLOAD_BUCKET: omnivore-demo-files build-docker-images: name: Build docker images runs-on: ubuntu-latest diff --git a/package.json b/package.json index aad1ec9a4..1ed75d075 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ ], "license": "AGPL-3.0-only", "scripts": { - "test": "lerna run --no-bail test", + "test": "lerna run test", "lint": "lerna run lint", "build": "lerna run build", "test:scoped:example": "lerna run test --scope={@omnivore/pdf-handler,@omnivore/web}",