Skip to content

Bump listen from 3.9.0 to 3.10.0 #145

Bump listen from 3.9.0 to 3.10.0

Bump listen from 3.9.0 to 3.10.0 #145

Workflow file for this run

# This workflow uses actions that are not certified by GitHub. They are
# provided by a third-party and are governed by separate terms of service,
# privacy policy, and support documentation.
#
# This workflow will install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby on Rails CI"
on:
push:
branches: [ '**' ]
jobs:
test:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v3
- name:
run: cat config/database.yml
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'yarn'
- run: yarn install
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Binstubs
run: bundle install --binstubs
- name: Set up database schema
run: bin/rake db:prepare db:seed
- name: Run tests
run: bin/rspec spec
- name: Build assets
run: bin/rails assets:precompile
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Binstubs
run: bundle install --binstubs
- name: Lint Ruby files
run: bin/rubocop --parallel
- name: Audit
run: bin/bundler-audit --update