Fix bad handling of plugin_pagespeed_detailed
This commit is contained in:
4
action/dist/index.js
vendored
4
action/dist/index.js
vendored
File diff suppressed because one or more lines are too long
@@ -95,8 +95,7 @@
|
|||||||
if (plugins.pagespeed.enabled) {
|
if (plugins.pagespeed.enabled) {
|
||||||
plugins.pagespeed.token = core.getInput("plugin_pagespeed_token")
|
plugins.pagespeed.token = core.getInput("plugin_pagespeed_token")
|
||||||
console.log(`Pagespeed token | ${plugins.pagespeed.token ? "provided" : "missing"}`)
|
console.log(`Pagespeed token | ${plugins.pagespeed.token ? "provided" : "missing"}`)
|
||||||
for (const option of ["detailed"])
|
q[`pagespeed.${option}`] = bool(core.getInput(`plugin_pagespeed_${option}`))
|
||||||
q[`pagespeed.${option}`] = core.getInput(`plugin_pagespeed_${option}`) || null
|
|
||||||
console.log(`Pagespeed detailed | ${q["pagespeed.detailed"]}`)
|
console.log(`Pagespeed detailed | ${q["pagespeed.detailed"]}`)
|
||||||
}
|
}
|
||||||
//Music
|
//Music
|
||||||
@@ -133,7 +132,7 @@
|
|||||||
if (plugins.projects.enabled) {
|
if (plugins.projects.enabled) {
|
||||||
for (const option of ["limit"])
|
for (const option of ["limit"])
|
||||||
q[`projects.${option}`] = core.getInput(`plugin_projects_${option}`) || null
|
q[`projects.${option}`] = core.getInput(`plugin_projects_${option}`) || null
|
||||||
console.log(`Projects limit | ${q["projects.limit"]}`)
|
console.log(`Projects limit | ${q["projects.limit"]}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
//Repositories to use
|
//Repositories to use
|
||||||
|
|||||||
@@ -211,7 +211,7 @@
|
|||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
.audit.text {
|
.audit.text {
|
||||||
min-width: 36px;
|
min-width: 42px;
|
||||||
}
|
}
|
||||||
.audit svg {
|
.audit svg {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user