From 7610b3bef59ec705da57276452df48da3eee385e Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Tue, 17 Sep 2024 07:13:34 +0000 Subject: [PATCH] ci: install yarn for actions on forgejo (#2) 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 Reviewed By: AdeAttwood Pull Request: https://forgejo.baln.co.uk/AdeAttwood/DiffCov/pulls/2 Co-authored-by: Ade Attwood Co-committed-by: Ade Attwood --- .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: