scode-eslint-config/Jenkinsfile

24 lines
484 B
Plaintext
Raw Normal View History

2020-02-05 19:07:08 +01:00
pipeline {
agent any
environment {
VERSION = VersionNumber([
versionNumberString:
'${BUILDS_ALL_TIME}',
versionPrefix: '1.2.',
worstResultForIncrement: 'SUCCESS'
])
}
stages {
2020-02-06 12:17:07 +01:00
stage('Building') {
2020-02-05 19:07:08 +01:00
steps {
script {
currentBuild.displayName = env.VERSION
}
2020-02-06 12:17:07 +01:00
sh 'yarn ci ${VERSION}'
2020-02-05 19:07:08 +01:00
}
}
}
}