From 25153e94f60f7be055d472ab573f4e367f53cbe8 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Tue, 11 Jul 2023 18:22:08 +0000 Subject: [PATCH] ci: use frozen-lockfile in CI (#51012) Use frozen-lockfile for the CI yarn install PR Close #51012 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e99f215954..78d13fd87a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,9 +30,9 @@ jobs: ./node_modules ./aio/node_modules - name: Install node modules - run: yarn install --immutable + run: yarn install --frozen-lockfile - name: Install node modules in aio - run: yarn install --immutable --cwd aio + run: yarn install --frozen-lockfile --cwd aio - name: Check code lint run: yarn -s tslint - name: Check code lint in aio