Skip to content

Commit 4104819

Browse files
committed
Add Jenkinsfile
1 parent 6985117 commit 4104819

File tree

2 files changed

+319
-711
lines changed

2 files changed

+319
-711
lines changed

Jenkinsfile

+29
Original file line numberDiff line numberDiff line change
@@ -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+
steps {
16+
dir('mlflow') {
17+
sh 'npm run lint'
18+
}
19+
}
20+
}
21+
stage('Bundle') {
22+
steps {
23+
dir('mlflow') {
24+
sh 'npm run build'
25+
}
26+
}
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)