chore: add log

This commit is contained in:
Dariusz Majcherczyk 2024-03-07 18:33:01 +01:00
parent 32e612648f
commit 4b53339368
No known key found for this signature in database
GPG Key ID: C42DFD2F046CA415

View File

@ -198,7 +198,8 @@ jobs:
name: '(CI) cypress' name: '(CI) cypress'
uses: ./.github/workflows/cypress-run.yml uses: ./.github/workflows/cypress-run.yml
secrets: inherit secrets: inherit
if: needs.check-e2e-needed.outputs.run-tests == 'true' && contains(needs.build-sources.outputs.projects, 'governance') && contains(needs.build-sources.outputs.projects, 'explorer') if: needs.check-e2e-needed.outputs.run-tests == 'true' && (contains(needs.build-sources.outputs.projects, 'governance') || contains(needs.build-sources.outputs.projects, 'explorer'))
with: with:
projects: ${{ needs.build-sources.outputs.projects-e2e }} projects: ${{ needs.build-sources.outputs.projects-e2e }}
tags: '@smoke' tags: '@smoke'
@ -286,7 +287,8 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- run: | - run: |
echo result="${{ needs.cypress.result }}" result="${{ needs.cypress.result }}"
echo "Result: $result"
if [[ $result == "success" || $result == "skipped" ]]; then if [[ $result == "success" || $result == "skipped" ]]; then
exit 0 exit 0
else else