diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index 79a1792..62f8aed 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -12,10 +12,15 @@ jobs: steps: - uses: actions/checkout@v3 - # Ensure the working directory is set to the app's directory - - name: Set working directory + - name: Print current working directory (root) + run: pwd + + - name: Set working directory to 'frontend' run: cd frontend + - name: Print current working directory (after cd frontend) + run: pwd + # Install dependencies - name: Install dependencies run: npm install