Replacing Jenkinsfile

This commit is contained in:
Stephen Vanderwarker 2021-06-20 19:21:11 -04:00
parent bac9ec05ed
commit 2d87a019b7
1 changed files with 14 additions and 8 deletions

22
Jenkinsfile vendored
View File

@ -1,14 +1,20 @@
pipeline {
agent {
docker {
image 'node:lts-buster-slim'
args '-p 3000:3000'
}
}
agent any
stages {
stage('Build') {
stage('Build') {
steps {
sh 'npm install'
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}