Skip to content
Draft
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
11 changes: 11 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,17 @@ jobs:
sudo apt-get install -y libpq-dev libicu-dev
sudo apt-get install -y libicu74

- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: '22'
cache: npm

- name: Install Node and build CSS
run: |
npm ci
npm run build:css:all

- name: Build and create DB
env:
# use localhost for the host here because we have specified a container for the job.
Expand Down
5 changes: 2 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'

ruby File.read(File.expand_path '../.ruby-version', __FILE__).strip.sub /\-p[0-9]+$/, '' # Read the rbenv version file
gem 'rails', '~> 6.1.7.10'
gem 'rails', '~> 7.0.8'

Check notice on line 4 in Gemfile

View check run for this annotation

codefactor.io / CodeFactor

Gemfile#L4

Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping. (Style/StringLiterals)

Check notice on line 4 in Gemfile

View check run for this annotation

codefactor.io / CodeFactor

Gemfile#L4

Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping. (Style/StringLiterals)

gem "concurrent-ruby", "1.3.4" # needed until https://github.com/rails/rails/pull/54264 is in Rails 7.0.8.8
gem "csv" # Ruby 3.4 stdlib extraction - required by ActiveSupport
Expand Down Expand Up @@ -70,7 +70,6 @@
gem 'i18n-js'
gem 'jquery-rails'
gem 'sass-rails'
gem 'twbs_sass_rails'
gem 'uglifier'

gem "sidekiq"
Expand All @@ -92,7 +91,7 @@
gem 'delorean'
gem 'factory_bot_rails'
gem 'faker'
gem "rspec-rails"
gem 'rspec-rails', '~> 6.1'

Check notice on line 94 in Gemfile

View check run for this annotation

codefactor.io / CodeFactor

Gemfile#L94

Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping. (Style/StringLiterals)

Check notice on line 94 in Gemfile

View check run for this annotation

codefactor.io / CodeFactor

Gemfile#L94

Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping. (Style/StringLiterals)
gem 'listen'
end

Expand Down
Loading
Loading