Skip to content

Instantly share code, notes, and snippets.

@eeganlf
Last active August 14, 2024 18:50
Show Gist options
  • Save eeganlf/1d7f0c94a5764510381d0446355e8756 to your computer and use it in GitHub Desktop.
Save eeganlf/1d7f0c94a5764510381d0446355e8756 to your computer and use it in GitHub Desktop.
lfs261-ch8-pipeline
pipeline {
agent {
docker { image 'node:20.16.0-alpine3.20' }
}
stages {
stage('Smoke Test') {
steps {
sh 'node --version'
sleep 10
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment