Skip to content

Add eslint and jest tests to the workflow #16

Add eslint and jest tests to the workflow

Add eslint and jest tests to the workflow #16

Workflow file for this run

name: mlflow
on:
push:
branches: [stephany/github-actions-3]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.7'
- name: Install
working-directory: ./mlflow
run: npm ci
- name: Test
working-directory: ./mlflow
run: |
npm run lint
npm run test
- name: Build
working-directory: ./mlflow
run: npm run build