Skip to content

Commit

Permalink
Jenkinsfile Modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmrad committed Aug 2, 2024
1 parent b720ce1 commit 823f80d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@ pipeline {
git branch: 'main', url: 'https://github.com/Kinovarobotics/ros2_kortex.git'
}
}

stage('List Files') {
steps {
script {
sh 'ls -la' // List all files in the current directory
}
}
}

stage('Validate YAML') {
steps {
// Running YAML linting on the specified YAML file
sh 'yamllint -c .yamllint .github/workflows/ci-format.yml'
sh 'yamllint -c ${WORKSPACE}/.yamllint .github/workflows/ci-format.yml'
}
}
}
Expand Down

0 comments on commit 823f80d

Please sign in to comment.