From 6eaf0a00a0d77fea7635ce58a85c89e58b654f88 Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 29 Apr 2024 16:25:57 +1000 Subject: [PATCH] Revert. Rails is required for the Karma rake script But surely we could convert it to a shell or node script. Maybe next time.. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 242efd2540..d8f8a348f0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -476,6 +476,12 @@ jobs: steps: - uses: actions/checkout@v3 + # Rails is required for the Karma rake script + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - uses: actions/setup-node@v3 with: node-version-file: .node-version