From b4a56f1150637a6293defd22cd349414d96dc603 Mon Sep 17 00:00:00 2001 From: Ben Limmer <630449+blimmer@users.noreply.github.com> Date: Sat, 27 Jan 2024 11:11:22 -0700 Subject: [PATCH] docs: add --frozen-lockfile to README Many folks will copy/paste the sample code from the README directly. In CI, most people will want to enforce a frozen lockfile. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e544e5a4..b68317d2 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ If you need to authenticate with a private registry, you can set the `BUN_AUTH_T - name: Install Dependencies env: BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: bun install + run: bun install --frozen-lockfile ``` ### Node.js not needed