mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 11:05:47 +00:00
19 lines
312 B
Plaintext
19 lines
312 B
Plaintext
pipeline {
|
|
agent {
|
|
node {
|
|
label 'master'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Install') {
|
|
steps {
|
|
sh 'yarn'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
sh 'npm run build:electron'
|
|
}
|
|
}
|
|
}
|
|
} |