From 7c53c25aaf6492c1bfa258bedd25e0a8511fb5d9 Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 29 Apr 2024 16:10:48 +1000 Subject: [PATCH] Skip Ruby setup for non-Ruby tests Conversely, these tests are JS-only. --- .github/workflows/build.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 846f781c71..242efd2540 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -476,16 +476,6 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup redis - uses: supercharge/redis-github-action@1.4.0 - with: - redis-version: 6 - - - 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 @@ -493,10 +483,6 @@ jobs: - name: Install JS dependencies run: yarn install --frozen-lockfile - - name: Set up database - run: | - bundle exec rake db:create - bundle exec rake db:schema:load - name: Run JS tests run: bundle exec rake karma:run