1
0
mirror of https://github.com/pnpm/action-setup.git synced 2026-03-10 08:31:44 +08:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Khải
0acfab44e0
Merge 4b568c8023 into 77504a59bc 2025-07-03 21:03:56 -06:00

View File

@ -36,7 +36,7 @@ If `run_install` is a YAML string representation of either an object or an array
#### `run_install.args`
**Optional** (_type:_ `string[]`) Additional arguments after `pnpm [recursive] install`, e.g. `[--ignore-scripts, --strict-peer-dependencies]`.
**Optional** (_type:_ `string[]`) Additional arguments after `pnpm [recursive] install`, e.g. `[--frozen-lockfile, --strict-peer-dependencies]`.
### `package_json_file`
@ -115,7 +115,7 @@ jobs:
version: 10
run_install:
- recursive: true
args: [--strict-peer-dependencies]
args: [--frozen-lockfile, --strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
```