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
15 changes: 4 additions & 11 deletions .github/workflows/ci-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ on:
- main
workflow_dispatch:

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
sayhello-build-run:
name: Sayhello Build and Run
Expand All @@ -19,14 +16,12 @@ jobs:
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.12"

- name: Set up uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Install uv
run: python -m pip install --upgrade pip uv

- name: Sync Python dependencies
run: uv sync
Expand All @@ -48,11 +43,9 @@ jobs:
uses: actions/checkout@v5

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "24"
cache: npm
cache-dependency-path: ui/frontend/package-lock.json

- name: Install frontend dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Note: After the container starts, UltraRAG UI will run automatically. You can di
After installation, run the following example command to check if the environment is normal:

```shell
ultrarag run examples/sayhello.yaml
ultrarag run examples/experiments/sayhello.yaml
```

If you see the following output, the installation is successful:
Expand Down
2 changes: 1 addition & 1 deletion docs/README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ docker run -it --gpus all -p 5050:5050 <docker_image_name>
安装完成后,运行以下示例命令来检查环境是否正常:

```shell
ultrarag run examples/sayhello.yaml
ultrarag run examples/experiments/sayhello.yaml
```

看到以下输出即代表安装成功:
Expand Down
2 changes: 1 addition & 1 deletion docs/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3184,7 +3184,7 @@ Tip: The container will automatically run UltraRAG UI after startup. You can acc
After installation is complete, run the following example command to check if the environment is normal:

```shell
ultrarag run examples/sayhello.yaml
ultrarag run examples/experiments/sayhello.yaml
```

Seeing the following output indicates a successful installation:
Expand Down