Skip to content

Remove nav right border and smooth close animation (#79) #271

Remove nav right border and smooth close animation (#79)

Remove nav right border and smooth close animation (#79) #271

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ["3.3", "3.4", "4.0"]
env:
RAILS_ENV: test
SECRET_KEY_BASE_DUMMY: 1
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Set up database
run: cd test/dummy && bin/rails db:prepare
- name: Run tests
run: bundle exec rake test