Skip to content

Commit fd6aab9

Browse files
authored
Merge branch 'main' into fix/link-popup-short-selection
2 parents b7ce74f + f371c90 commit fd6aab9

150 files changed

Lines changed: 6190 additions & 2439 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/CLAUDE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Claude Code Instructions
2+
3+
@../AGENTS.md

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ updates:
1515
schedule:
1616
interval: weekly
1717
day: monday
18+
commit-message:
19+
prefix: "ci(github)"
20+
groups:
21+
github-actions:
22+
patterns:
23+
- "actions/*"
1824

1925
# npm — root
2026
- package-ecosystem: npm
@@ -26,6 +32,10 @@ updates:
2632
- "demo"
2733
- "packages/*"
2834
- "infra/*"
35+
groups:
36+
commitlint:
37+
patterns:
38+
- "@commitlint/*"
2939
ignore:
3040
- dependency-name: "*"
3141
update-types:

.github/workflows/branch-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
ref: ${{ github.event.pull_request.head.sha }}
1414

1515
- name: Setup pnpm
16-
uses: pnpm/action-setup@v4
16+
uses: pnpm/action-setup@v5
1717

1818
- name: Setup Node
1919
uses: actions/setup-node@v6

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v6
1515

1616
- name: Setup pnpm
17-
uses: pnpm/action-setup@v4
17+
uses: pnpm/action-setup@v5
1818

1919
- name: Setup Node
2020
uses: actions/setup-node@v6
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@v6
4040

4141
- name: Setup pnpm
42-
uses: pnpm/action-setup@v4
42+
uses: pnpm/action-setup@v5
4343

4444
- name: Setup Node
4545
uses: actions/setup-node@v6
@@ -64,7 +64,7 @@ jobs:
6464
uses: actions/checkout@v6
6565

6666
- name: Setup pnpm
67-
uses: pnpm/action-setup@v4
67+
uses: pnpm/action-setup@v5
6868

6969
- name: Setup Node
7070
uses: actions/setup-node@v6

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
actions: read # Required for Claude to read CI results on PRs
2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 1
2828

.github/workflows/deploy-docs.yml

Lines changed: 16 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -14,39 +14,29 @@ concurrency:
1414

1515
jobs:
1616
build:
17-
name: Build static docs
17+
name: Build docs
1818
runs-on: ubuntu-latest
1919
steps:
20-
# Checkout repo sources.
2120
- name: Checkout
22-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2322

24-
# Minimal build: create a single static HTML file.
25-
- name: Build docs (minimal)
26-
run: |
27-
mkdir -p docs-dist
28-
cat > docs-dist/index.html <<'HTML'
29-
<!doctype html>
30-
<html lang="en">
31-
<head>
32-
<meta charset="utf-8" />
33-
<meta name="viewport" content="width=device-width, initial-scale=1" />
34-
<title>Markdown Editor Docs</title>
35-
</head>
36-
<body>
37-
<h1>Markdown Editor Docs</h1>
38-
<p>Deployed via GitHub Pages.</p>
39-
</body>
40-
</html>
41-
HTML
23+
- name: Setup pnpm
24+
uses: pnpm/action-setup@v5
25+
26+
- name: Setup Node
27+
uses: actions/setup-node@v6
28+
with:
29+
node-version-file: '.nvmrc'
30+
cache: pnpm
31+
32+
- name: Build HTML docs with Diplodoc CLI
33+
run: pnpm run ci:docs:build
4234

43-
# Configure GitHub Pages.
4435
- name: Configure Pages
45-
uses: actions/configure-pages@v5
36+
uses: actions/configure-pages@v6
4637

47-
# Upload the static site folder as an artifact for deployment.
4838
- name: Upload Pages artifact
49-
uses: actions/upload-pages-artifact@v4
39+
uses: actions/upload-pages-artifact@v5
5040
with:
5141
path: ./docs-dist
5242

@@ -56,10 +46,8 @@ jobs:
5646
runs-on: ubuntu-latest
5747
environment:
5848
name: github-pages
59-
# The deploy action outputs the final Pages URL here.
6049
url: ${{ steps.deployment.outputs.page_url }}
6150
steps:
62-
# Deploy the uploaded artifact to GitHub Pages.
6351
- name: Deploy
6452
id: deployment
65-
uses: actions/deploy-pages@v4
53+
uses: actions/deploy-pages@v5

.github/workflows/main-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v6
1414

1515
- name: Setup pnpm
16-
uses: pnpm/action-setup@v4
16+
uses: pnpm/action-setup@v5
1717

1818
- name: Setup Node
1919
uses: actions/setup-node@v6

.github/workflows/pr-preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v6
1313

1414
- name: Setup pnpm
15-
uses: pnpm/action-setup@v4
15+
uses: pnpm/action-setup@v5
1616

1717
- name: Setup Node
1818
uses: actions/setup-node@v6
@@ -36,13 +36,13 @@ jobs:
3636

3737
- name: Create token
3838
id: app-token
39-
uses: actions/create-github-app-token@v2
39+
uses: actions/create-github-app-token@v3
4040
with:
4141
app-id: ${{ secrets.GRAVITY_UI_APP_ID }}
4242
private-key: ${{ secrets.GRAVITY_UI_APP_PRIVATE_KEY }}
4343

4444
- name: Create Comment
45-
uses: marocchino/sticky-pull-request-comment@v2
45+
uses: marocchino/sticky-pull-request-comment@v3
4646
with:
4747
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
4848
header: preview

.github/workflows/pr-title-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/checkout@v6
2222

2323
- name: Setup pnpm
24-
uses: pnpm/action-setup@v4
24+
uses: pnpm/action-setup@v5
2525

2626
- name: Setup Node
2727
uses: actions/setup-node@v6

.github/workflows/pr-visual-tests-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
steps:
1515
- name: Create token
1616
id: app-token
17-
uses: actions/create-github-app-token@v2
17+
uses: actions/create-github-app-token@v3
1818
with:
1919
app-id: ${{ secrets.GRAVITY_UI_APP_ID }}
2020
private-key: ${{ secrets.GRAVITY_UI_APP_PRIVATE_KEY }}
2121

2222
- name: Download Artifacts
23-
uses: actions/download-artifact@v4
23+
uses: actions/download-artifact@v8
2424
with:
2525
github-token: ${{ steps.app-token.outputs.token }}
2626
run-id: ${{ github.event.workflow_run.id }}
@@ -46,7 +46,7 @@ jobs:
4646
shell: bash
4747

4848
- name: Create Comment
49-
uses: marocchino/sticky-pull-request-comment@v2
49+
uses: marocchino/sticky-pull-request-comment@v3
5050
with:
5151
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
5252
number: ${{ steps.pr.outputs.id }}

0 commit comments

Comments
 (0)