Skip to content

feat: add sortable column headers to all job list tables #100

feat: add sortable column headers to all job list tables

feat: add sortable column headers to all job list tables #100

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop --parallel
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.2", "3.3"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install sqlite3 from source
run: |
gem uninstall sqlite3 --all --ignore-dependencies || true
gem install sqlite3 --platform=ruby
- name: Run RSpec
run: bundle exec rspec