You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced-usage.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -261,10 +261,14 @@ steps:
261
261
with:
262
262
node-version: '14'
263
263
cache: 'pnpm'
264
-
- run: pnpm install --frozen-lockfile
264
+
- run: pnpm install
265
265
- run: pnpm test
266
266
```
267
267
268
+
> **Note**: By default `--frozen-lockfile` option is passed starting from pnpm `6.10.x`. It will be automatically added if you run it on [CI](https://pnpm.io/cli/install#--frozen-lockfile).
269
+
> If the `pnpm-lock.yaml` file changes then pass `--frozen-lockfile` option.
0 commit comments