From 19adb10de1e9f1bc2719a1acbd004187ddee643c Mon Sep 17 00:00:00 2001 From: dan Date: Wed, 6 Sep 2023 17:26:19 +0100 Subject: [PATCH] Use frozen lockfile for CI workflows (#1394) --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c5b9a324..1d2a032c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: - name: Check out Git repository uses: actions/checkout@v3 - name: Yarn install - run: yarn + run: yarn --frozen-lockfile - name: Lint check run: yarn lint - name: Type check @@ -33,7 +33,7 @@ jobs: - name: Check out Git repository uses: actions/checkout@v3 - name: Yarn install - run: yarn + run: yarn --frozen-lockfile - name: Run tests run: | yarn test --forceExit