add gcs bucket name to the env var
This commit is contained in:
2
.github/workflows/run-tests.yaml
vendored
2
.github/workflows/run-tests.yaml
vendored
@ -88,7 +88,6 @@ jobs:
|
|||||||
yarn test
|
yarn test
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
env:
|
env:
|
||||||
API_ENV: local
|
|
||||||
PG_HOST: localhost
|
PG_HOST: localhost
|
||||||
PG_PORT: ${{ job.services.postgres.ports[5432] }}
|
PG_PORT: ${{ job.services.postgres.ports[5432] }}
|
||||||
PG_USER: app_user
|
PG_USER: app_user
|
||||||
@ -97,6 +96,7 @@ jobs:
|
|||||||
PG_LOGGER: debug
|
PG_LOGGER: debug
|
||||||
REDIS_URL: redis://localhost:${{ job.services.redis.ports[6379] }}
|
REDIS_URL: redis://localhost:${{ job.services.redis.ports[6379] }}
|
||||||
MQ_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:
|
build-docker-images:
|
||||||
name: Build docker images
|
name: Build docker images
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
],
|
],
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "lerna run --no-bail test",
|
"test": "lerna run test",
|
||||||
"lint": "lerna run lint",
|
"lint": "lerna run lint",
|
||||||
"build": "lerna run build",
|
"build": "lerna run build",
|
||||||
"test:scoped:example": "lerna run test --scope={@omnivore/pdf-handler,@omnivore/web}",
|
"test:scoped:example": "lerna run test --scope={@omnivore/pdf-handler,@omnivore/web}",
|
||||||
|
|||||||
Reference in New Issue
Block a user