Bump rails from 7.0.4.3 to 7.1.3 #255
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: Ruby and Node | |
on: | |
pull_request: {} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # V2.4.0 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@e6689b4deb1cb2062ea45315001f687c0b52111b # V1.144.1 | |
with: | |
ruby-version: '3.2' | |
- name: Set up Node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # V3.6.0 | |
with: | |
node-version: '12' | |
- name: Build and test | |
run: | | |
bundle install --without development | |
yarn install | |
bundle exec rake |