From 2a5e4b69e9579f854d801ada6fd2a2ee2427b920 Mon Sep 17 00:00:00 2001 From: vmhung <11689557+hungvminh@users.noreply.github.com> Date: Mon, 25 May 2026 16:48:41 +0700 Subject: [PATCH] ci: pin yarn classic in workflow --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca5ac99..6c4dc46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,14 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' + cache: yarn + cache-dependency-path: server/yarn.lock + + - name: Setup Yarn Classic + run: npm install --global yarn@1.22.22 - name: Install dependencies - run: npm install + run: yarn install --frozen-lockfile - name: Run Gemini compatibility tests - run: npm run test:gemini-compat + run: yarn test:gemini-compat