diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c6234821c6b..a168ef8f74d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,11 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: '3.3' + - name: Install bundler + run: gem install bundler - name: Install dependencies - run: bundle install && bundle exec appraisal install + run: | + bundle install + bundle exec appraisal install - name: Build site - run: bundle exec appraisal jekyll build --future \ No newline at end of file + run: bundle exec appraisal jekyll build --future