We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cf23a4 commit ab32c19Copy full SHA for ab32c19
.github/workflows/mlflow-js.yaml
@@ -0,0 +1,19 @@
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
19
+ run: npm run build
mlflow/.gitignore
@@ -13,3 +13,5 @@ lib/
# Temporary files
temp/
+
+package-lock.json
0 commit comments