From a4376b9d337cb6807c36b6265e7c842bff76c58c Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Tue, 17 Sep 2024 08:04:58 +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..abd049e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Install yarn + run: npm i -g yarn + - name: Set up Node uses: actions/setup-node@v3 with: @@ -38,6 +41,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Install yarn + run: npm i -g yarn + - name: Set up Node uses: actions/setup-node@v3 with: -- 2.43.0