From 6fe7c0cd6fdd6ba2e49aa2d29e5b128363280ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lorber?= Date: Wed, 9 Jun 2021 15:18:07 +0200 Subject: [PATCH] fix(v2): use yarn install --frozen-lockfile on CI --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3b75c7b6ae..2fa11141ba 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: - name: Installation uses: bahmutov/npm-install@v1 with: - install-command: yarn install --immutable # Fails if yarn.lock is modified + install-command: yarn install --frozen-lockfile # Fails if yarn.lock is modified - name: Lint run: yarn lint:ci - name: Prettier Code