This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
Bump jquery-rails from 4.5.1 to 4.6.0 #356
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre-merge checks | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- ready_for_review | |
- synchronize | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7.6' | |
- uses: browser-actions/setup-firefox@latest | |
- run: firefox --version | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests | |
env: | |
RAILS_ENV: test | |
run: bundle exec rake | |
- name: Install stub api tests dependencies | |
env: | |
BUNDLE_GEMFILE: stub/api/Gemfile | |
run: bundle | |
- name: Run stub api tests | |
env: | |
BUNDLE_GEMFILE: stub/api/Gemfile | |
BROWSER: firefox | |
run: bundle exec rspec --pattern stub/api/**/*_spec.rb |