Fix missing Bundler in linter workflow by adding gem install bundler step

Co-authored-by: scarlac <895369+scarlac@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-09-11 19:37:45 +00:00
parent c0d1ae98dc
commit c808dd22d8
2 changed files with 4 additions and 2 deletions

View File

@ -17,6 +17,10 @@ jobs:
uses: actions/checkout@v3
- name: Install modules
run: yarn
- name: Install Bundler
run: sudo gem install bundler
- name: Install gems
run: cd example && sudo bundle install
- name: Install example
run: yarn bootstrap-linux
- name: Lint

View File

@ -1,2 +0,0 @@
BUNDLE_PATH: "vendor/bundle"
BUNDLE_FORCE_RUBY_PLATFORM: 1