From ec989e614d8e5787c6e72890ce5a48b49e09a035 Mon Sep 17 00:00:00 2001 From: Ben Christianson Date: Sat, 29 Jun 2024 22:52:48 -0500 Subject: [PATCH] Use frozen lockfile --- .github/workflows/lint.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 23fbefe..f1e74fe 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,7 +17,7 @@ jobs: node-version: "lts/iron" cache: "pnpm" - name: "Install Dependencies" - run: "pnpm ci" + run: "pnpm install --frozen-lockfile" - name: "Run eslint" run: "pnpm lint:ts" prettier: @@ -33,7 +33,7 @@ jobs: node-version: "lts/iron" cache: "pnpm" - name: "Install Dependencies" - run: "pnpm ci" + run: "pnpm install --frozen-lockfile" - name: "Run prettier" run: "pnpm prettier" markdownlint: @@ -49,7 +49,7 @@ jobs: node-version: "lts/iron" cache: "pnpm" - name: "Install Dependencies" - run: "pnpm ci" + run: "pnpm install --frozen-lockfile" - name: "Run markdownlint" run: "pnpm mdl" yaml: