From 0a93a6c2452468e852f22c75a96faa7514ab1cbd Mon Sep 17 00:00:00 2001 From: cipchk Date: Fri, 29 Dec 2023 18:31:56 +0800 Subject: [PATCH] ci: fix c ache --- .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 15d715842d..6eb375cc97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: path: ./node_modules key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }} - name: Install node modules - run: yarn install --immutable --immutable-cache + run: yarn install --frozen-lockfile - name: Test run: yarn run test @@ -35,6 +35,6 @@ jobs: path: ./node_modules key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }} - name: Install node modules - run: yarn install --immutable --immutable-cache + run: yarn install --frozen-lockfile - name: Check code lint run: yarn run lint