From d23434aafe7eb2b04bae6f736740282ded08c19a Mon Sep 17 00:00:00 2001 From: Quentin BEY Date: Tue, 22 Jul 2025 09:39:50 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(crowdin)=20fix=20download=20action?= =?UTF-8?q?'s=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The self-hosted runner requires explicit yarn install. --- .github/workflows/crowdin_download.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/crowdin_download.yml b/.github/workflows/crowdin_download.yml index c750d01..948f630 100644 --- a/.github/workflows/crowdin_download.yml +++ b/.github/workflows/crowdin_download.yml @@ -47,6 +47,12 @@ jobs: CROWDIN_BASE_PATH: "../src/" # frontend i18n + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: "22.x" + - name: Install yarn + run: npm install -g yarn - name: Restore the frontend cache uses: actions/cache@v4 with: