mirror of
https://github.com/pnpm/action-setup.git
synced 2025-01-23 00:39:43 +08:00
40 lines
643 B
JSON
40 lines
643 B
JSON
|
{
|
||
|
"anyOf": [
|
||
|
{
|
||
|
"$ref": "#/definitions/RunInstall"
|
||
|
},
|
||
|
{
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"$ref": "#/definitions/RunInstall"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"type": [
|
||
|
"null",
|
||
|
"boolean"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"definitions": {
|
||
|
"RunInstall": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"recursive": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"cwd": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"args": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
||
|
}
|