diff --git a/.gitignore b/.gitignore
index bd6911f1dd..e9269283f1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -57,3 +57,5 @@ typings/
# dotenv environment variables file
.env
+
+/build
\ No newline at end of file
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000000..311acb4737
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,25 @@
+pipeline {
+ agent any
+ environment {
+ CI = 'true'
+ }
+ stages {
+ stage('Build') {
+ steps {
+ sh 'npm install'
+ }
+ }
+ stage('Test') {
+ steps {
+ sh './jenkins/scripts/test.sh'
+ }
+ }
+ stage('Deliver') {
+ steps {
+ sh './jenkins/scripts/deliver.sh'
+ input message: 'Finished using the web site? (Click "Proceed" to continue)'
+ sh './jenkins/scripts/kill.sh'
+ }
+ }
+ }
+}
diff --git a/src/App.js b/src/App.js
index 203067e4d7..3cce5ff744 100644
--- a/src/App.js
+++ b/src/App.js
@@ -9,6 +9,7 @@ class App extends Component {
Welcome to React
+ Hello world!!
To get started, edit src/App.js and save to reload.