Skip to content

Commit f17a566

Browse files
authored
feat: update CI workflow (#390)
1 parent f72c6fa commit f17a566

4 files changed

Lines changed: 7 additions & 14 deletions

File tree

.github/workflows/ci-smoke.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
- main
88
workflow_dispatch:
99

10-
env:
11-
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
12-
1310
jobs:
1411
sayhello-build-run:
1512
name: Sayhello Build and Run
@@ -19,14 +16,12 @@ jobs:
1916
uses: actions/checkout@v5
2017

2118
- name: Set up Python
22-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2320
with:
2421
python-version: "3.12"
2522

26-
- name: Set up uv
27-
uses: astral-sh/setup-uv@v4
28-
with:
29-
enable-cache: true
23+
- name: Install uv
24+
run: python -m pip install --upgrade pip uv
3025

3126
- name: Sync Python dependencies
3227
run: uv sync
@@ -48,11 +43,9 @@ jobs:
4843
uses: actions/checkout@v5
4944

5045
- name: Set up Node.js
51-
uses: actions/setup-node@v4
46+
uses: actions/setup-node@v5
5247
with:
5348
node-version: "24"
54-
cache: npm
55-
cache-dependency-path: ui/frontend/package-lock.json
5649

5750
- name: Install frontend dependencies
5851
run: npm ci

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Note: After the container starts, UltraRAG UI will run automatically. You can di
225225
After installation, run the following example command to check if the environment is normal:
226226

227227
```shell
228-
ultrarag run examples/sayhello.yaml
228+
ultrarag run examples/experiments/sayhello.yaml
229229
```
230230

231231
If you see the following output, the installation is successful:

docs/README_zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ docker run -it --gpus all -p 5050:5050 <docker_image_name>
222222
安装完成后,运行以下示例命令来检查环境是否正常:
223223

224224
```shell
225-
ultrarag run examples/sayhello.yaml
225+
ultrarag run examples/experiments/sayhello.yaml
226226
```
227227

228228
看到以下输出即代表安装成功:

docs/llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3184,7 +3184,7 @@ Tip: The container will automatically run UltraRAG UI after startup. You can acc
31843184
After installation is complete, run the following example command to check if the environment is normal:
31853185

31863186
```shell
3187-
ultrarag run examples/sayhello.yaml
3187+
ultrarag run examples/experiments/sayhello.yaml
31883188
```
31893189

31903190
Seeing the following output indicates a successful installation:

0 commit comments

Comments
 (0)