Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronskiba committed Jul 18, 2024
1 parent d06f436 commit b4bee57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Tests - PostgreSQL

on: [pull_request]
on: [pull_request, push]

jobs:
postgresql:
Expand Down
9 changes: 5 additions & 4 deletions app/javascript/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,11 @@ import './src/superAdmin/notifications/edit';
import './src/superAdmin/themes/newEdit';
import './src/superAdmin/users/edit';

// Since we're using Webpacker to manage JS we need to startup Rails' Unobtrusive JS
// and Turbo. ActiveStorage and ActionCable would also need to be in here
// if we decide to implement either before Rails 6
require('@rails/ujs').start();
// We need to startup Rails' Unobtrusive JS and Turbo.
// ActiveStorage and ActionCable would also need
// to be in here if we decide to implement either.
import Rails from "@rails/ujs";
Rails.start();

// TODO: Disabled turbo for the time being because our custom JS is not
// properly setup to work with it. We should review the docs:
Expand Down

0 comments on commit b4bee57

Please sign in to comment.