-
Notifications
You must be signed in to change notification settings - Fork 1
update calcit 0.11 #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9d74d9a
8ef5bc9
cdac964
46f364b
7a640da
2d59098
238bb1e
ba3d993
f4f1e3c
30d22c6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -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 | ||||||||||||||||||||
|
|
||||||||||||||||||||
| - name: Enable Corepack | ||||||||||||||||||||
| run: | | ||||||||||||||||||||
| corepack enable | ||||||||||||||||||||
| corepack prepare yarn@4.12.0 --activate | ||||||||||||||||||||
| yarn --version | ||||||||||||||||||||
|
|
||||||||||||||||||||
|
||||||||||||||||||||
| - 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- |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,3 +7,5 @@ node_modules/ | |
| dist/ | ||
|
|
||
| .DS_Store | ||
|
|
||
| .yarn | ||
There was a problem hiding this comment.
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).