Skip to content

Commit

Permalink
Update reusable-e2e-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
goncer authored Nov 7, 2023
1 parent ba3eb02 commit a1e812f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/reusable-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,18 @@ jobs:
id: setTestRun


print:
runs-on: [ubuntu-latest]
needs: matrix-setup
steps:
- name: get
run: |
matrix="${{ needs.matrix-setup.outputs.matrix }}"
echo "Hello"
echo "$matrix"
e2e-test-matrix:
needs: [setup-report, matrix-setup]
needs: [setup-report, print]
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix-setup.outputs.matrix) }}
Expand Down

0 comments on commit a1e812f

Please sign in to comment.