From b5635accf931561e59046d4fd45a768bf5be52d1 Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Tue, 17 Sep 2024 08:00:39 +0100 Subject: [PATCH] ci: install yarn for actions on forgejo Summary: The forgejo action use act under the hood. The default image does not have yarn installed so, this is installing it. Test Plan: CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da49e64..edfa15e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,9 @@ jobs: node-version: 18 cache: yarn + - name: Install yarn + run: npm i -g yarn + - name: Install dependencies run: yarn install @@ -44,6 +47,9 @@ jobs: node-version: ${{ matrix.node-version }} cache: yarn + - name: Install yarn + run: npm i -g yarn + - name: Install dependencies run: yarn install