From 8642d99a51e2bb0e2548de7b1910bc95e88b932a Mon Sep 17 00:00:00 2001 From: Ben Limmer <630449+blimmer@users.noreply.github.com> Date: Thu, 1 Feb 2024 18:30:42 -0700 Subject: [PATCH] docs: add --frozen-lockfile to README (#52) 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