audioshowkit/Jenkinsfile

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-04-17 06:37:34 +00:00
pipeline {
2022-04-16 08:22:01 +00:00
agent any
2022-04-17 06:37:34 +00:00
stages {
2022-04-16 08:22:01 +00:00
stage("install") {
steps {
nodejs('NodeJS (17.4.0)') {
sh "npm install"
2022-04-16 08:22:01 +00:00
}
}
}
stage("build") {
steps {
nodejs('NodeJS (17.4.0)') {
sh "npm run build:dev"
2022-04-16 08:22:01 +00:00
}
}
}
stage("test") {
steps {
nodejs('NodeJS (17.4.0)') {
sh "npm run test:junit"
2022-04-16 08:22:01 +00:00
}
junit 'junit/*.xml'
2022-04-16 08:22:01 +00:00
}
}
2022-04-18 03:35:25 +00:00
stage("archive product") {
2022-04-16 08:36:22 +00:00
steps {
2022-04-18 03:25:54 +00:00
archiveArtifacts artifacts: 'audioshowkit/dist/audioshowkit.js', followSymlinks: false
}
}
stage("generate docs") {
steps {
nodejs('NodeJS (17.4.0)') {
sh "npm run docs"
2022-04-16 08:22:01 +00:00
}
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'audioshowkit/docs', reportFiles: 'index.html', reportName: 'AudioShowKit JSDocs', reportTitles: ''])
2022-04-16 08:22:01 +00:00
}
}
}
}