chore: bump node-version to 24#13
Merged
Merged
Conversation
Coverage Report
File CoverageNo changed files found. |
There was a problem hiding this comment.
Pull request overview
Updates GitHub Actions workflows to use Node.js 24, aiming to keep CI/release/demo pipelines consistent with the project’s desired Node runtime.
Changes:
- Bumped
actions/setup-nodenode-versionfrom 22 → 24 in CI workflow. - Bumped
actions/setup-nodenode-versionfrom 22 → 24 in release workflow (build job). - Bumped
actions/setup-nodenode-versionfrom 22 → 24 in demo workflow.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/test.yml | Updates CI workflow to run on Node 24. |
| .github/workflows/release.yml | Updates release workflow build job to use Node 24. |
| .github/workflows/demo.yml | Updates demo build workflow to use Node 24. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
22
to
26
| - name: ⎔ Setup Node.js | ||
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | ||
| with: | ||
| node-version: 22 | ||
| node-version: 24 | ||
| cache: pnpm |
mscolnick
added a commit
that referenced
this pull request
May 12, 2026
Fixes pre-existing YAML indentation bug in the publish job that was causing release.yml to fail at parse time (0s duration on every run). Flagged by Copilot review on #13.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Aligns all workflows on Node 24.