Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

calcit.cirru -diff linguist-generated
yarn.lock -diff linguist-generated
.pnp.cjs -diff linguist-generated
.pnp.loader.mjs -diff linguist-generated

Agents.md -diff linguist-generated
llms/*.md -diff linguist-generated
11 changes: 8 additions & 3 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
cache: yarn
node-version: 24
Copy link

Copilot AI Feb 1, 2026

Choose a reason for hiding this comment

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

The CI workflow is being updated from Node.js 20 to Node.js 24, which is a reasonable upgrade. However, Node.js 24 does not exist as a stable release as of January 2025 (the latest LTS is Node.js 22, and 23 is the current version). This appears to be specifying a future version that may not be available when the CI runs. The version should be changed to an existing Node.js version such as 22 (current LTS) or 23 (latest stable).

Suggested change
node-version: 24
node-version: 22

Copilot uses AI. Check for mistakes.

- name: Enable Corepack
run: |
corepack enable
corepack prepare yarn@4.12.0 --activate
yarn --version

Copy link

Copilot AI Feb 1, 2026

Choose a reason for hiding this comment

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

Yarn 4 migration detected with Corepack setup. The workflow now explicitly enables Corepack and pins Yarn to version 4.12.0, which aligns with the yarn.lock format change from Yarn v1 to Yarn v4 (Berry). The actions/setup-node@v6 also removes the cache: yarn option. However, consider adding cache configuration for Yarn 4, as it uses a different cache structure. You can use the Yarn cache action or configure caching manually for the .yarn/cache directory to speed up CI builds.

Suggested change
- name: Cache Yarn 4 dependencies
uses: actions/cache@v4
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn4-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn4-

Copilot uses AI. Check for mistakes.
- uses: calcit-lang/setup-cr@0.0.8

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ node_modules/
dist/

.DS_Store

.yarn
Loading
Loading