mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 07:53:49 +08:00
Dev: --dev option does nothing in yarn (#12032)
This commit is contained in:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -119,7 +119,7 @@ jobs:
|
||||
${{ runner.os }}-${{ matrix.os }}-yarn-
|
||||
|
||||
- name: Yarn install
|
||||
run: yarn install --dev
|
||||
run: yarn install
|
||||
|
||||
- name: "Checkout official plugins"
|
||||
if: env.TARGET == 'PLUGINS'
|
||||
|
@ -26,7 +26,7 @@ task "qunit:test", [:timeout, :qunit_path] do |_, args|
|
||||
|
||||
report_requests = ENV['REPORT_REQUESTS'] == "1"
|
||||
|
||||
system("yarn install --dev")
|
||||
system("yarn install")
|
||||
|
||||
# ensure we have this port available
|
||||
def port_available?(port)
|
||||
|
@ -16,7 +16,7 @@ task "smoke:test" do
|
||||
abort "Chrome 59 or higher is required to run tests in headless mode."
|
||||
end
|
||||
|
||||
system("yarn install --dev")
|
||||
system("yarn install")
|
||||
|
||||
url = ENV["URL"]
|
||||
if !url
|
||||
|
Reference in New Issue
Block a user