fix(docs): license setup command clarification [skip ci]
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
template: repository
|
template: repository
|
||||||
repo: metrics
|
repo: metrics
|
||||||
plugin_licenses: yes
|
plugin_licenses: yes
|
||||||
plugin_licenses_setup: npm ci
|
plugin_licenses_setup: "[[ -f package.json ]] && npm ci || true"
|
||||||
test:
|
test:
|
||||||
timeout: 1800000
|
timeout: 1800000
|
||||||
modes:
|
modes:
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
template: repository
|
template: repository
|
||||||
repo: metrics
|
repo: metrics
|
||||||
plugin_licenses: yes
|
plugin_licenses: yes
|
||||||
plugin_licenses_setup: npm ci
|
plugin_licenses_setup: "[[ -f package.json ]] && npm ci || true"
|
||||||
plugin_licenses_legal: no
|
plugin_licenses_legal: no
|
||||||
plugin_licenses_ratio: yes
|
plugin_licenses_ratio: yes
|
||||||
test:
|
test:
|
||||||
|
|||||||
@@ -32,9 +32,12 @@ inputs:
|
|||||||
plugin_licenses_setup:
|
plugin_licenses_setup:
|
||||||
description: |
|
description: |
|
||||||
Setup command
|
Setup command
|
||||||
|
|
||||||
|
> ℹ️ Depending on the project, this may not be required.
|
||||||
|
> The example command is intended for NodeJs projects that use `npm` to install their dependencies.
|
||||||
type: string
|
type: string
|
||||||
default: ""
|
default: ""
|
||||||
example: npm ci
|
example: "[[ -f package.json ]] && npm ci || true"
|
||||||
|
|
||||||
plugin_licenses_ratio:
|
plugin_licenses_ratio:
|
||||||
description: |
|
description: |
|
||||||
|
|||||||
Reference in New Issue
Block a user