Last active
August 14, 2024 18:50
-
-
Save eeganlf/1d7f0c94a5764510381d0446355e8756 to your computer and use it in GitHub Desktop.
lfs261-ch8-pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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