From b3bc4994583207fd053835c58cbeb77bb2836cdc Mon Sep 17 00:00:00 2001 From: solomonng2001 Date: Mon, 28 Oct 2024 10:36:45 +0800 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 30b8a4a2a2..d33f7c1c32 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -75,10 +75,16 @@ jobs: HISTORY_FIREBASE_CREDENTIAL_PATH: ${{ vars.HISTORY_SERVICE_FIREBASE_CREDENTIAL_PATH }} run: | cd ./apps/question-service + echo "Current directory after cd to question-service: $(pwd)" + ls -la echo "$QUESTION_FIREBASE_JSON" > "$QUESTION_FIREBASE_CREDENTIAL_PATH" + echo "Created question service credential file at: $QUESTION_FIREBASE_CREDENTIAL_PATH" cd ../history-service + echo "Current directory after cd to history-service: $(pwd)" + ls -la echo "$HISTORY_FIREBASE_JSON" > "$HISTORY_FIREBASE_CREDENTIAL_PATH" + echo "Created history service credential file at: $HISTORY_FIREBASE_CREDENTIAL_PATH" - name: Build and Run Services run: |