1
0
mirror of https://github.com/pnpm/action-setup.git synced 2026-07-05 17:33:45 +08:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Ben McCann
2eb3a2bf7e Merge d5bd7e8c9a into f2b2b233b5 2025-07-15 13:07:39 +01:00
Matthias
f2b2b233b5 Remove --frozen-lockfile from examples (#171) 2025-07-11 00:08:35 +02:00

View File

@@ -40,7 +40,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. `[--frozen-lockfile, --strict-peer-dependencies]`.
**Optional** (_type:_ `string[]`) Additional arguments after `pnpm [recursive] install`, e.g. `[--ignore-scripts, --strict-peer-dependencies]`.
### `package_json_file`
@@ -119,7 +119,7 @@ jobs:
version: 10
run_install:
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
args: [--strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
```