Actions
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Gitea Pipelines/pipeline/head There was a failure building this commit

This commit is contained in:
Dmytro Tkachenko
2024-10-22 20:31:34 +03:00
parent 51e22921ce
commit 24af7f48c4
2 changed files with 30 additions and 0 deletions
+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'
}
}
}
}