pipeline { agent any stages { stage('Checkout') { steps { checkout scm sh 'ls -las' } } } }