From 44e5cd6ef3105abbb49b35518d82bdaaaed6e1c0 Mon Sep 17 00:00:00 2001 From: antoine lebaud Date: Wed, 3 Jul 2024 18:20:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(CI)=20fix=20crowdin=20steps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated CI to use "npm" instead of yarn for the frontend project based on @manuhabitela's recommendations. Also updated the dependencies-related CI steps that were previously missed. --- .github/workflows/meet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/meet.yml b/.github/workflows/meet.yml index 25942428..89207349 100644 --- a/.github/workflows/meet.yml +++ b/.github/workflows/meet.yml @@ -208,11 +208,11 @@ jobs: uses: actions/setup-node@v4 with: node-version: "18.x" - cache: "yarn" - cache-dependency-path: src/frontend/yarn.lock + cache: "npm" + cache-dependency-path: src/frontend/package-lock.json - name: Install dependencies - run: cd src/frontend/ && yarn install --frozen-lockfile + run: cd src/frontend/ && npm ci - name: Extract the frontend translation run: make frontend-i18n-extract