File tree Expand file tree Collapse file tree 3 files changed +28
-1
lines changed
Expand file tree Collapse file tree 3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1+ name : mlflow
2+ on :
3+ push :
4+ branches : [stephany/github-actions-3]
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : Use Node.js
11+ uses : actions/setup-node@v4
12+ with :
13+ node-version : ' 22.7'
14+ - name : Install and build
15+ working-directory : ./mlflow
16+ run : npm ci
17+ - name : Build
18+ working-directory : ./mlflow
19+ run : npm run build
Original file line number Diff line number Diff line change 1414
1515# Temporary files
1616temp /
17+
18+ package-lock.json
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ export default tseslint.config(
77 eslint . configs . recommended ,
88 ...tseslint . configs . recommended ,
99 {
10- ignores : [ 'docs' ] ,
10+ ignores : [ 'docs' , 'lib/**' ] ,
11+ } ,
12+ {
13+ rules : {
14+ '@typescript-eslint/no-explicit-any' : 'off' ,
15+ 'no-console' : 'off' ,
16+ } ,
1117 }
1218) ;
You can’t perform that action at this time.
0 commit comments