Files
test/.gitea/workflows/pipeline.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: unmarshal errors: line 1: cannot unmarshal !!str `pipelin...` into model.Workflow
Dmytro Tkachenko 24af7f48c4
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Gitea Pipelines/pipeline/head There was a failure building this commit
Actions
2024-10-22 20:31:34 +03:00

15 lines
194 B
YAML

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'npm install'
}
}
stage('Test') {
steps {
sh './jenkins/scripts/test.sh'
}
}
}
}