diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index b75c5c6c..76536219 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -251,6 +251,9 @@ jobs: - name: "Dump environment variables" run: "composer dump-env ${{ env.APP_ENV }} --ansi" + - name: "List environment variables" + run: "bin/console debug:dotenv --ansi" + - name: "Warm up cache" run: "bin/console cache:warmup --ansi" @@ -421,6 +424,9 @@ jobs: - name: "Dump environment variables" run: "composer dump-env ${{ env.APP_ENV }} --ansi" + - name: "List environment variables" + run: "bin/console debug:dotenv --ansi" + - name: "Warm up cache" run: "bin/console cache:warmup --ansi" @@ -498,6 +504,9 @@ jobs: - name: "Dump environment variables" run: "composer dump-env ${{ env.APP_ENV }} --ansi" + - name: "List environment variables" + run: "bin/console debug:dotenv --ansi" + - name: "Warm up cache" run: "bin/console cache:warmup --ansi" diff --git a/Makefile b/Makefile index 2451a0e6..d5007bf0 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,7 @@ doctrine: vendor environment ## Runs doctrine commands to set up a local test da .PHONY: environment environment: vendor ## Dumps environment variables composer dump-env ${APP_ENV} + bin/console debug:dotenv .PHONY: help help: ## Displays this list of targets with descriptions