From c9f2b816567f4dc313f2b886f8a91193753b3d95 Mon Sep 17 00:00:00 2001 From: Santiago Bartesaghi Date: Tue, 3 Dec 2024 17:08:13 -0300 Subject: [PATCH] Fix CI (#917) --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61a4931a..782f6ab1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,8 @@ jobs: with: node-version-file: '.nvmrc' cache: 'yarn' + - name: Run yarn commands + run: yarn install - name: Setup Ruby uses: ruby/setup-ruby@v1 with: @@ -131,6 +133,8 @@ jobs: with: node-version-file: '.nvmrc' cache: 'yarn' + - name: Run yarn commands + run: yarn install - name: Setup Ruby uses: ruby/setup-ruby@v1 with: @@ -144,8 +148,6 @@ jobs: run: bundle exec rails runner 'puts Rails.application.secret_key_base' - name: Setup Database run: bundle exec rails parallel:load_schema - - name: Run yarn commands - run: yarn install - name: Precompile assets run: bundle exec rails assets:precompile - name: Check for untracked changes in schema.rb