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 6985117 commit 4104819Copy full SHA for 4104819
Jenkinsfile
@@ -0,0 +1,29 @@
1
+pipeline {
2
+ agent {
3
+ docker { image 'node:19-alpine' }
4
+ }
5
+
6
+ stages {
7
+ stage('Install Dependencies') {
8
+ steps {
9
+ dir('mlflow') {
10
+ sh 'npm install'
11
12
13
14
+ stage('Lint') {
15
16
17
+ sh 'npm run lint'
18
19
20
21
+ stage('Bundle') {
22
23
24
+ sh 'npm run build'
25
26
27
28
29
+}
0 commit comments