Files
test/.jenkins/scripts/build.sh
T
Dmytro Tkachenko f2a58ee3b1
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
One/pipeline/head There was a failure building this commit
Gitea Pipelines/pipeline/head There was a failure building this commit
Actions
2024-10-22 20:37:26 +03:00

15 lines
269 B
Bash

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'yarn && yarn build'
}
}
stage('Test') {
steps {
sh './jenkins/scripts/test.sh'
}
}
}
}