Skip to content

Commit

Permalink
Add Run eslint to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
seneyu committed Oct 19, 2024
1 parent 97949dd commit 588d0b9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/mlflow-js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '22.7'
- name: Install and build
- name: Install dependencies
working-directory: ./mlflow
run: |
npm ci
npm run build
run: npm ci
- name: Run eslint
working-directory: ./mlflow
run: npm run lint
- name: Build
working-directory: ./mlflow
run: npm run build

0 comments on commit 588d0b9

Please sign in to comment.