From f063372469291a2859594253f51613808bf01427 Mon Sep 17 00:00:00 2001 From: Marco Munizaga Date: Wed, 22 May 2024 21:42:13 +0000 Subject: [PATCH] Print docker version --- .github/actions/run-transport-interop-test/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/run-transport-interop-test/action.yml b/.github/actions/run-transport-interop-test/action.yml index f66e6a636..4cf24e0fd 100644 --- a/.github/actions/run-transport-interop-test/action.yml +++ b/.github/actions/run-transport-interop-test/action.yml @@ -71,6 +71,11 @@ runs: with: config: ${{ steps.buildkit.outputs.config }} + - name: Print docker version + working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} + run: docker version + shell: bash + - name: Install deps working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} run: npm ci @@ -109,7 +114,7 @@ runs: EXTRA_VERSION: ${{ inputs.extra-versions }} NAME_FILTER: ${{ inputs.test-filter }} NAME_IGNORE: ${{ inputs.test-ignore }} - run: npm run test -- -e --extra-version=$EXTRA_VERSION --name-filter=$NAME_FILTER --name-ignore=$NAME_IGNORE + run: npm run test -- --extra-version=$EXTRA_VERSION --name-filter=$NAME_FILTER --name-ignore=$NAME_IGNORE shell: bash - name: Print the results