build(deps): Bump nokogiri from 1.16.7 to 1.18.0 in the nokogiri group across 1 directory #4218
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: Rails Migration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
migration: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
bundler-cache: true | |
- name: Migration Test | |
run: | | |
bin/rails db:migrate db:populate db:reset |