pipeline {
agent {
docker { image 'node:18.18.2-alpine3.18' }
}
stages {
stage('Build') {
steps {
echo 'Building..'
stage('Test') {
echo 'Testing..'
stage('Deploy') {
echo 'Deploying....'