-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
90 lines (85 loc) · 1.73 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
pipeline {
agent any
stages {
stage('Build') {
parallel {
stage('Build backend') {
steps {
fileExists 'backend/'
dir(path: 'backend') {
sh 'npm install'
}
}
}
stage('Build frontend') {
steps {
fileExists 'frontend/site'
dir(path: 'frontend/site') {
sh 'npm install'
sh 'npm build'
}
}
}
}
}
stage('Test') {
parallel {
stage('Backend tests') {
stages {
stage('Unit Tests') {
steps {
dir(path: 'backend') {
sh 'npm run test:unit'
}
}
}
stage('Integration Tests') {
steps {
dir(path: 'backend') {
sh 'npm run test:integ'
}
}
}
}
}
stage('Frontend Unit Tests') {
steps {
dir(path: 'frontend/site') {
sh 'npm run test:unit'
}
}
}
}
}
stage ('Run Eslint') {
parallel {
stage('backend') {
steps {
dir(path: 'backend') {
sh 'npm run eslint'
}
}
}
stage('frontend') {
steps {
dir(path: 'frontend/site') {
sh 'npm run lint'
}
}
}
}
}
stage('E2E Tests') {
steps {
fileExists 'test/'
dir(path: 'test') {
sh 'npm install'
sh 'npm run test'
}
}
}
}
environment {
CI = 'true'
}
}