Skip to content

Commit 97949dd

Browse files
committed
Fix the working-directory
1 parent 71fc0b0 commit 97949dd

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/mlflow-js.yaml

+5-6
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ jobs:
1111
uses: actions/setup-node@v4
1212
with:
1313
node-version: '22.7'
14-
- name: Install dependencies
15-
run: npm ci
16-
- name: Eslint
17-
run: npm run lint
18-
- name: Build
19-
run: npm run build
14+
- name: Install and build
15+
working-directory: ./mlflow
16+
run: |
17+
npm ci
18+
npm run build

0 commit comments

Comments
 (0)