diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..a0457fe --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,12 @@ +pipeline { + agent any + + stages { + stage('Test') { + steps { + echo 'Testing..' + sh 'npm run cy:run:web' + } + } + } +} \ No newline at end of file