Skip to content

Commit dac0164

Browse files
committed
Add eslint and jest tests to the workflow
1 parent 3870034 commit dac0164

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/mlflow-js.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@ jobs:
1111
uses: actions/setup-node@v4
1212
with:
1313
node-version: '22.7'
14-
- name: Install and build
14+
- name: Install
1515
working-directory: ./mlflow
1616
run: npm ci
17+
- name: Test
18+
working-directory: ./mlflow
19+
run: |
20+
npm run lint
21+
npm run test
1722
- name: Build
1823
working-directory: ./mlflow
1924
run: npm run build

0 commit comments

Comments
 (0)