We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c75a6ac commit 7f27343Copy full SHA for 7f27343
.github/workflows/integration.yaml
@@ -110,6 +110,12 @@ jobs:
110
- name: Set up Docker Buildx
111
uses: docker/setup-buildx-action@v3
112
113
+ # Pre-emptively pull the test-services image, to avoid affecting execution time
114
+ - name: Pull test services image
115
+ if: ${{ inputs.serviceImage != '' }}
116
+ shell: bash
117
+ run: docker pull ${{ inputs.serviceImage }}
118
+
119
- name: Build Typescript test-services image
120
if: ${{ inputs.serviceImage == '' }}
121
id: build
0 commit comments