We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72f1eef commit 71fc0b0Copy full SHA for 71fc0b0
.github/workflows/mlflow-js.yaml
@@ -0,0 +1,19 @@
1
+name: mlflow
2
+on:
3
+ push:
4
+ branches: [stephany/github-actions]
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 dependencies
15
+ run: npm ci
16
+ - name: Eslint
17
+ run: npm run lint
18
+ - name: Build
19
+ run: npm run build
Jenkinsfile
0 commit comments