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