Skip to content

Use act from 'react' #4735

Use act from 'react'

Use act from 'react' #4735

Workflow file for this run

name: Ruby-CI
on:
pull_request: ~
push:
branches: [main]
jobs:
ruby-tests:
runs-on: ubuntu-latest
name: 'Test (Ruby ${{ matrix.ruby-version }})'
strategy:
fail-fast: false
matrix:
ruby-version: ['3.1']
steps:
- uses: actions/checkout@v3
name: Checkout
- uses: ruby/setup-ruby@v1
name: Use Ruby ${{ matrix.ruby-version }}
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: 📦 Install dependencies
run: |
bundle config set ignore_messages true
bundle install --frozen
working-directory: ./gems/quilt_rails
- name: 💅🏼 Lint
run: bundle exec rubocop
working-directory: ./gems/quilt_rails
- name: Test
run: bundle exec rake test
working-directory: ./gems/quilt_rails