We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9178903 commit 6c9a832Copy full SHA for 6c9a832
jenkinsfile
@@ -0,0 +1,36 @@
1
+pipeline {
2
+ agent any
3
+
4
+ stages {
5
+ stage('Clone Repository') {
6
+ steps {
7
+ git 'https://github.com/Harsh-Govil/HTML-CSS-JavaScript-projects-for-beginners.git'
8
+ }
9
10
11
+ stage('Build') {
12
13
+ // No build step for this project, so we just echo
14
+ echo 'Build step placeholder'
15
16
17
18
+ stage('Test') {
19
20
+ echo 'Test step placeholder (no tests available)'
21
22
23
24
+ stage('Deploy') {
25
26
+ echo 'Deploy step placeholder'
27
28
29
30
31
+ post {
32
+ always {
33
+ echo 'Pipeline execution completed.'
34
35
36
+}
0 commit comments