Skip to content

Commit 1207f49

Browse files
committed
fix(ci): correct cortex-gui path in CI workflow
The cortex-gui directory is under src/, not at the root level.
1 parent 4d35a3a commit 1207f49

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ jobs:
213213
with:
214214
node-version: "20"
215215
cache: "npm"
216-
cache-dependency-path: cortex-gui/package-lock.json
216+
cache-dependency-path: src/cortex-gui/package-lock.json
217217

218218
- name: Install Linux dependencies
219219
if: matrix.name == 'ubuntu'
@@ -227,16 +227,16 @@ jobs:
227227
path: |
228228
cortex-gui/node_modules
229229
~/.npm
230-
key: npm-${{ matrix.name }}-${{ hashFiles('cortex-gui/package-lock.json') }}
230+
key: npm-${{ matrix.name }}-${{ hashFiles('src/cortex-gui/package-lock.json') }}
231231
restore-keys: |
232232
npm-${{ matrix.name }}-
233233
234234
- name: Install frontend dependencies
235-
working-directory: cortex-gui
235+
working-directory: src/cortex-gui
236236
run: npm ci
237237

238238
- name: Build frontend
239-
working-directory: cortex-gui
239+
working-directory: src/cortex-gui
240240
run: npm run build
241241

242242
- name: Install Rust nightly

0 commit comments

Comments
 (0)