File tree Expand file tree Collapse file tree 4 files changed +4205
-2776
lines changed Expand file tree Collapse file tree 4 files changed +4205
-2776
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ set -e
4
+
3
5
docker-compose up -d
4
6
helm lint api/helm/api/
5
7
sleep 20
@@ -13,7 +15,8 @@ docker-compose exec php bin/console doctrine:schema:drop --env=test --force
13
15
docker-compose exec php bin/console cache:warmup --env=test
14
16
docker-compose exec php bin/behat --format=progress
15
17
docker-compose exec client yarn install --pure-lockfile
16
- docker-compose exec client yarn jest --ci --reporters=default --reporters=jest-junit
18
+ docker-compose exec client yarn jest --ci --reporters=default --reporters=jest-junit --passWithNoTests
19
+ docker-compose exec client yarn eslint src
17
20
curl -s http://localhost # Client
18
21
curl -s http://localhost:81 # Admin
19
22
curl -s http://localhost:8080 # API
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends": "react-app"
3
+ }
Original file line number Diff line number Diff line change 17
17
},
18
18
"devDependencies" : {
19
19
"jest-junit" : " ^5.2.0" ,
20
- "react-scripts" : " 1.1.4 "
20
+ "react-scripts" : " ^2.0.3 "
21
21
},
22
22
"scripts" : {
23
23
"start" : " react-scripts start" ,
24
24
"build" : " react-scripts build" ,
25
- "test" : " react-scripts test --env=jsdom " ,
25
+ "test" : " react-scripts test" ,
26
26
"eject" : " react-scripts eject"
27
27
},
28
28
"jest" : {
34
34
" /node_modules/" ,
35
35
" /features"
36
36
]
37
- }
37
+ },
38
+ "browserslist" : [
39
+ " >0.2%" ,
40
+ " not dead" ,
41
+ " not ie <= 11" ,
42
+ " not op_mini all"
43
+ ]
38
44
}
You can’t perform that action at this time.
0 commit comments