From ea1865cc011f78cfda5ed5fb0365d1fa5a818415 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Mon, 14 Mar 2022 17:53:21 +0000 Subject: [PATCH] DEV: Ensure yarn dependencies are installed during docker.rake (#16185) Followup to 349a4acc9f44f4995cd397d06bb969e9efc2b18a --- lib/tasks/docker.rake | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tasks/docker.rake b/lib/tasks/docker.rake index 0038bfe62a1..22a80e833cc 100644 --- a/lib/tasks/docker.rake +++ b/lib/tasks/docker.rake @@ -201,6 +201,7 @@ task 'docker:test' do unless ENV["RUBY_ONLY"] js_timeout = ENV["JS_TIMEOUT"].presence || 900_000 # 15 minutes + @good &&= run_or_fail 'yarn install' unless ENV["SKIP_CORE"] @good &&= run_or_fail("cd app/assets/javascripts/discourse && CI=1 yarn ember exam --random")