audioshowkit/Jenkinsfile
2022-11-25 22:14:59 +00:00

31 lines
898 B
Groovy

pipeline {
agent any
stages {
stage("install") {
steps {
sh "fnm install"
sh "fnm use"
sh "npm install"
}
}
stage("tests") {
steps {
sh "npm run test:junit"
junit 'junit/*.xml'
}
}
stage("build") {
steps {
sh "npm run build:prod"
fingerprint "dist/**"
archiveArtifacts artifacts: 'dist/audioshowkit.js', followSymlinks: false
}
}
stage("generate docs") {
steps {
sh "npm run docs"
publishHTML([allowMissing: false, alwaysLinkToLastBuild: true, keepAll: true, reportDir: './docs', reportFiles: 'index.html', reportName: 'AudioShowKit Docs', reportTitles: ''])
}
}
}
}