Skip to content

Add eslint-formatter-compact needed by overcommit (#62) #169

Add eslint-formatter-compact needed by overcommit (#62)

Add eslint-formatter-compact needed by overcommit (#62) #169

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
rubocop:
name: "Rubocop"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "ruby"
bundler-cache: true
- run: bundle exec rubocop
test:
name: "Test / Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3", "head"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test
integration_test:
name: "Test / E2E"
runs-on: ubuntu-latest
needs: [rubocop, test]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
bundler-cache: true
- run: git config --global user.name 'github-actions[bot]'
- run: git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- run: gem install --no-document railties
- run: bundle exec rake test:e2e