Jenkins Expert needed
Budget: $250 – $750 USD
I have some errors in building jenkinsfile and look for someone who can fix the error.
Below is the content of file.
#!/usr/bin/env groovy
pipeline {
agent {
label 'cicd-build'
}
stages {
stage('install playwright') {
steps {
sh 'npm install'
}
}
stage('test') {
steps {
sh 'npm run test-galileo-chrome'
}
}
}
post {
success {
publishHTML target: [
reportDir: 'Report',
reportFiles: 'index.html',
reportName: 'Test_Results'
]
}
}
}
Below is the content of file.
#!/usr/bin/env groovy
pipeline {
agent {
label 'cicd-build'
}
stages {
stage('install playwright') {
steps {
sh 'npm install'
}
}
stage('test') {
steps {
sh 'npm run test-galileo-chrome'
}
}
}
post {
success {
publishHTML target: [
reportDir: 'Report',
reportFiles: 'index.html',
reportName: 'Test_Results'
]
}
}
}