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 a8c5428 commit 263e235Copy full SHA for 263e235
Jenkinsfile
@@ -0,0 +1,26 @@
1
+pipeline {
2
+ agent any
3
+ tools {nodejs "Node18.18.1"}
4
+ stages {
5
+ stage('下载依赖') {
6
+ steps {
7
+ sh './scripts/ci'
8
+ }
9
10
+ stage('代码检查') {
11
12
+ sh './scripts/lint --fix'
13
14
15
+ stage('本地编译') {
16
17
+ sh './scripts/bundle build'
18
19
20
+ stage('镜像打包并推送') {
21
22
+ sh './scripts/bundle image_faster'
23
24
25
26
+}
0 commit comments