Skip to content
Merged
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: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version:
Expand All @@ -24,7 +23,7 @@ jobs:
registry-url: https://registry.npmjs.org/
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.0
ruby-version: 3.2
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ruby-version should specify a patch version (e.g., '3.2.0') instead of just '3.2' for consistency with the previous version format ('2.7.0'). Using a specific patch version ensures reproducible builds across different CI runs.

Suggested change
ruby-version: 3.2
ruby-version: 3.2.0

Copilot uses AI. Check for mistakes.
bundler-cache: true
- run: npm ci
- run: npm run clean
Expand Down