Skip to content

feat: Add flowbite

feat: Add flowbite #26

Workflow file for this run

name: AdministrateTailwindTheme CI
on:
push:
branches:
- "*"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Run linter and test
strategy:
matrix:
ruby:
- '3.2.2'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Rubycritic
run: bundle exec rubycritic
- name: Run Rubocop
run: bundle exec rubocop
# # uncomment for debug
# - name: Setup upterm session
# uses: lhotari/action-upterm@v1
# with:
# limit-access-to-actor: true
# limit-access-to-users: ${{ github.repository_owner }}
- name: Run Tests
run: bin/test