Skip to content

Commit 588d0b9

Browse files
committed
Add Run eslint to workflows
1 parent 97949dd commit 588d0b9

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/mlflow-js.yaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ jobs:
1111
uses: actions/setup-node@v4
1212
with:
1313
node-version: '22.7'
14-
- name: Install and build
14+
- name: Install dependencies
1515
working-directory: ./mlflow
16-
run: |
17-
npm ci
18-
npm run build
16+
run: npm ci
17+
- name: Run eslint
18+
working-directory: ./mlflow
19+
run: npm run lint
20+
- name: Build
21+
working-directory: ./mlflow
22+
run: npm run build

0 commit comments

Comments
 (0)