Skip to content

Commit

Permalink
add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dvviktordelev committed May 10, 2024
1 parent 0b49a22 commit 249e19f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-node-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ jobs:
echo "POSTGRES_PORT=5432"
} >> "$GITHUB_ENV"
docker network connect ${{ env.GH_ACTIONS_SELF_HOSTED_NETWORK_NAME }} ${{ env.POSTGRES_HOSTNAME }}
docker ps
- name: Set postgres connection details to hosted runner
if: env.GH_ACTIONS_SELF_HOSTED_NETWORK_NAME == ''
run: |
Expand Down Expand Up @@ -371,7 +372,9 @@ jobs:
run: yarn playwright install --with-deps chromium
shell: bash
- name: Run playwright e2e tests
run: yarn run pw:run ${{ inputs.playwright_spec_param }}
run: |
pg_isready -h ${{ env.POSTGRES_HOSTNAME }} -p ${{ env.POSTGRES_PORT }}
yarn run pw:run ${{ inputs.playwright_spec_param }}
shell: bash
- name: Upload playwright report
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 249e19f

Please sign in to comment.