File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 46
46
run : |
47
47
cd UserAccMgmtServ
48
48
npm run testCI
49
+
50
+ test-ViewGeneratorServ :
51
+ runs-on : ubuntu-latest
52
+
53
+ steps :
54
+ - name : Checkout code
55
+ uses : actions/checkout@v2
56
+
57
+ - name : Use Node.js
58
+ uses : actions/setup-node@v2
59
+ with :
60
+ node-version : ' 20'
61
+
62
+ - name : Install dependencies
63
+ run : |
64
+ cd view_generator_serv
65
+ npm install
66
+
67
+ - name : Run tests
68
+ run : |
69
+ cd view_generator_serv
70
+ npm run testCI
49
71
50
72
51
73
Original file line number Diff line number Diff line change 29
29
"start" : " react-scripts start" ,
30
30
"build" : " react-scripts build" ,
31
31
"test" : " react-scripts test --transformIgnorePatterns \" node_modules/(?!axios)/\" " ,
32
+ "testCI" : " CI=true react-scripts test --transformIgnorePatterns \" node_modules/(?!axios)/\" " ,
32
33
"eject" : " react-scripts eject"
33
34
},
34
35
"eslintConfig" : {
You can’t perform that action at this time.
0 commit comments