From e1d55e525435b1b12433fc64c03ccb3930604f96 Mon Sep 17 00:00:00 2001 From: Brandon Date: Mon, 18 Jan 2021 13:08:03 -0600 Subject: [PATCH] chore(ci): Add `--frozen-lockfile` arg to `yarn install` --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c11fe59..4e4f9db 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,7 +39,7 @@ jobs: restore-keys: ${{ runner.os }}-${{ matrix.node }}-yarn- - name: Install dependencies using Yarn - run: yarn install + run: yarn install --frozen-lockfile - name: Execute the Node test scripts run: yarn test