test_suite/Jenkinsfile

12 lines
187 B
Groovy

pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Testing..'
sh 'npm run cy:run:web'
}
}
}
}