pipeline { agent none stages { stage('') { steps { node(label: 'testing') { fileExists 'README.md' } } } } }