main #3

Merged
Dmitry_Tkachenko merged 30 commits from main into develop 2024-10-22 23:58:46 +03:00
2 changed files with 30 additions and 0 deletions
Showing only changes of commit 24af7f48c4 - Show all commits
+15
View File
@@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'npm install'
}
}
stage('Test') {
steps {
sh './jenkins/scripts/test.sh'
}
}
}
}
+15
View File
@@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'npm install'
}
}
stage('Test') {
steps {
sh './jenkins/scripts/test.sh'
}
}
}
}