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
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
checks:
name: Shared checks / Checks
env:
NODE_VERSION: '22'
NODE_VERSION: '24'
runs-on: ubuntu-latest
permissions: write-all

Expand All @@ -36,7 +36,7 @@ jobs:
raijin:
name: Raijin checks
env:
NODE_VERSION: '22'
NODE_VERSION: '24'
runs-on: ubuntu-latest
permissions: read-all

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Publish
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true }}
env:
NODE_VERSION: '22'
NODE_VERSION: '24'
runs-on: ubuntu-latest
permissions: write-all

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/raijin-llm-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
permissions:
contents: read
env:
NODE_VERSION: '22'
NODE_VERSION: '24'
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY || secrets.OPENAI_SERVICE_ACCOUNT_KEY }}
OPENAI_MODEL: ${{ inputs.model || vars.OPENAI_SMOKE_MODEL || 'gpt-5.4-mini' }}
LLM_SMOKE_REPORT_PATH: artifacts/llm-smoke-report.json
Expand Down
2 changes: 1 addition & 1 deletion docs/raijin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ Navigation for custom `atls` Yarn bundle docs

- Commands: 36 (active: 35, inactive: 1)
- Workspace packages: 72
- Last generated: 2026-04-29T20:54:41.789Z
- Last generated: 2026-04-29T23:07:25.462Z
2 changes: 1 addition & 1 deletion docs/raijin/README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@

- Команд: 36 (active: 35, inactive: 1)
- Workspace-пакетов: 72
- Последняя генерация: 2026-04-29T20:54:41.789Z
- Последняя генерация: 2026-04-29T23:07:25.462Z
4 changes: 2 additions & 2 deletions docs/raijin/index.meta.v1.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"generatedBy": "scripts/raijin/generate-artifacts.mjs",
"contentSha256": "909fa4d2372310669cedc158a1f44c5ef6eb4c1ce5319492e162bb4a74bfdab0",
"contentSha256": "65af7f2f92cbb25b7c6ffc03f74fef03ce3b6c3ada0bb1b2e2e48bbf10b18160",
"packageManager": "yarn@4.14.1",
"workspaceCount": 72,
"commandCount": 36,
Expand All @@ -10,5 +10,5 @@
"semanticsSchemaVersion": 1,
"semanticsCommandCount": 36,
"semanticsWorkspaceCount": 72,
"lastGenerated": "2026-04-29T20:54:41.789Z"
"lastGenerated": "2026-04-29T23:07:25.462Z"
}
4 changes: 2 additions & 2 deletions docs/raijin/index.v1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"environment": {
"nodeVersion": "22",
"nodeVersion": "24",
"requiresSourceEnv": true,
"requiredEnv": ["NODE_OPTIONS"],
"pnpEnableEsmLoader": true,
Expand Down Expand Up @@ -1482,5 +1482,5 @@
}
]
},
"lastGenerated": "2026-04-29T20:54:41.789Z"
"lastGenerated": "2026-04-29T23:07:25.462Z"
}
2 changes: 1 addition & 1 deletion docs/raijin/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Minimal install-and-verify flow for the custom `atls` Yarn bundle

## 1. Prerequisites

- Node.js: `>= 22`
- Node.js: `>= 24`
- Yarn: `>= 4`
- A working project with `package.json`

Expand Down
2 changes: 1 addition & 1 deletion docs/raijin/quickstart.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## 1. Предпосылки

- Node.js: `>= 22` (не ниже `22`)
- Node.js: `>= 24` (не ниже `24`)
- Yarn: `>= 4` (не ниже `4`)
- Рабочий проект с `package.json`

Expand Down
4 changes: 2 additions & 2 deletions scripts/raijin/generate-artifacts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ const renderQuickstart = (language) => {
'<!-- sync:preflight -->',
isRu ? '## 1. Предпосылки' : '## 1. Prerequisites',
'',
isRu ? '- Node.js: `>= 22` (не ниже `22`)' : '- Node.js: `>= 22`',
isRu ? '- Node.js: `>= 24` (не ниже `24`)' : '- Node.js: `>= 24`',
isRu ? '- Yarn: `>= 4` (не ниже `4`)' : '- Yarn: `>= 4`',
isRu ? '- Рабочий проект с `package.json`' : '- A working project with `package.json`',
'',
Expand Down Expand Up @@ -1290,7 +1290,7 @@ const yarnPathMatch = yarnRc.match(/^\s*yarnPath:\s*(.+)\s*$/m)

const draftIndex = {
environment: {
nodeVersion: '22',
nodeVersion: '24',
requiresSourceEnv: true,
requiredEnv: ['NODE_OPTIONS'],
pnpEnableEsmLoader: /pnpEnableEsmLoader:\s*true/.test(yarnRc),
Expand Down
Loading