Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/js_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,8 @@ jobs:
- name: Build i18n libraries
run: bundle exec rake react_on_rails:locale

- name: Generate React on Rails packs
run: bundle exec rails react_on_rails:generate_packs

- name: Run js tests
run: bundle exec rake ci:js
3 changes: 3 additions & 0 deletions .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,8 @@ jobs:
- name: Build i18n libraries
run: bundle exec rake react_on_rails:locale

- name: Generate React on Rails packs
run: bundle exec rails react_on_rails:generate_packs

- name: Run lint
run: bundle exec rake lint
3 changes: 3 additions & 0 deletions .github/workflows/rspec_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
- name: Build i18n libraries
run: bundle exec rake react_on_rails:locale

- name: Generate React on Rails packs
run: bundle exec rails react_on_rails:generate_packs

- name: Build Rescript components
run: yarn res:build

Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,8 @@ lib/bs
/lib/ocaml

client/app/bundles/comments/rescript/**/*.bs.js

# Generated React on Rails packs
**/generated/**

.claude/
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.4"

gem "react_on_rails", "16.0.1.rc.4"
gem "shakapacker", "8.2.0"
gem "shakapacker", "8.4.0"

# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "listen"
Expand Down
Loading