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
9 changes: 7 additions & 2 deletions .github/workflows/ci_ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ on:
- main
- release/*
- "*-stable"
- "*bump*"
pull_request:
branches-ignore:
- "chore/l10n*"

env:
CI: "true"
RUBY_VERSION: 3.2.2
NODE_VERSION: 18.17.1
RUBY_VERSION: 3.3.4
NODE_VERSION: 22.16.0

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down Expand Up @@ -69,6 +70,10 @@ jobs:
npm-
- run: bundle exec rake test_app
name: Create test app
- run: |
rm -f ./spec/decidim_dummy_app/app/services/dummy_signature_handler.rb
rm -f ./spec/decidim_dummy_app/app/services/dummy_sms_mobile_phone_validator.rb
name: Remove Initiative-dependent dummy files
- run: mkdir -p ./spec/decidim_dummy_app/tmp/screenshots
name: Create the screenshots folder
- uses: nanasess/setup-chromedriver@v2
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ on:
push:
branches:
- main
- "*bump*"
pull_request:

env:
RUBY_VERSION: 3.2.2
NODE_VERSION: 18.17.1
RUBY_VERSION: 3.3.4
NODE_VERSION: 22.16.0

jobs:
lint-report:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ rubycritic:
test stable:
extends: .test
variables:
DECIDIM_VERSION: "~> 0.29.0"
DECIDIM_VERSION: "~> 0.31.0"
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.1
22.14.0
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.4
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ ruby RUBY_VERSION

gem "concurrent-ruby", "= 1.3.4"

gem "decidim", "~> 0.29"
gem "decidim", "~> 0.31"
gem "decidim-ai", path: "."
gem "decidim-debates", "~> 0.29"
gem "decidim-initiatives", "~> 0.29"
gem "decidim-meetings", "~> 0.29"
gem "decidim-proposals", "~> 0.29"
gem "decidim-debates", "~> 0.31"
gem "decidim-initiatives", "~> 0.31"
gem "decidim-meetings", "~> 0.31"
gem "decidim-proposals", "~> 0.31"

gem "bootsnap", "~> 1.4"
gem "puma", ">= 6.3"
Expand All @@ -21,7 +21,7 @@ group :development, :test do

gem "faker"

gem "decidim-dev", "~> 0.29"
gem "decidim-dev", "~> 0.31"

gem "rubocop-performance"
gem "simplecov", require: false
Expand Down
Loading
Loading