From d97874960394ebcddebdf5a338cc4f89db70e64d Mon Sep 17 00:00:00 2001 From: Adrien de Peretti Date: Wed, 10 Sep 2025 11:45:13 +0200 Subject: [PATCH] fix(): Prevent ci to fail if lock file does not exists (#13456) --- .github/workflows/test-cli-with-database.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-cli-with-database.yml b/.github/workflows/test-cli-with-database.yml index 176be0cbb0..5c8a118901 100644 --- a/.github/workflows/test-cli-with-database.yml +++ b/.github/workflows/test-cli-with-database.yml @@ -65,7 +65,7 @@ jobs: run: corepack enable - name: Install new app dependencies (via resolutions) - run: rm package-lock.json && yarn install --no-immutable + run: rm -f package-lock.json && yarn install --no-immutable env: YARN_ENABLE_IMMUTABLE_INSTALLS: false working-directory: ../cli-test