Skip to content

Commit f44c3c9

Browse files
committed
fix: finalize order
1 parent 2780ad1 commit f44c3c9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,10 @@ jobs:
186186
steps:
187187
- run:
188188
name: Start Docker pull
189-
command: docker pull python@sha256:1f92d35b567363820d0f2f37c7ccf2c1543e2d852cea01edb027039e6aef25e6
189+
command: |
190+
# The plugin.spec.ts test is slow due to pulling a 2+GB image.
191+
# So we pull the image in the background to save time.
192+
docker pull python@sha256:1f92d35b567363820d0f2f37c7ccf2c1543e2d852cea01edb027039e6aef25e6
190193
background: true
191194
- checkout
192195
- install_node_npm:
@@ -312,8 +315,8 @@ workflows:
312315
- nodejs-install
313316
- snyk-bot-slack
314317
node_version: *windows_node_version
315-
# requires:
316-
# - Install, Lint, and Build
318+
requires:
319+
- Install, Lint, and Build
317320
post-steps:
318321
- *slack-fail-notify
319322
- build_cli:

0 commit comments

Comments
 (0)