Skip to content

Bump aws-partitions from 1.994.0 to 1.995.0 #3124

Bump aws-partitions from 1.994.0 to 1.995.0

Bump aws-partitions from 1.994.0 to 1.995.0 #3124

Workflow file for this run

name: Ruby
on: [push]
jobs:
run_sanity:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2', '3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Update to current stable google-chrome
run: |
echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
sudo apt-get -y update
sudo apt-get -y install google-chrome-stable
- name: Run single browser spec to check sanity
run: |
bundle exec rspec spec/functional/helpcenter_main_page_links_spec.rb