File tree 3 files changed +38
-2
lines changed
3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Build 1.3.x
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - release-1.3.*
7
+ - v1.3.*
8
+ pull_request :
9
+ branches :
10
+ - release-1.3.*
11
+ - v1.3.*
12
+
13
+ # Allows you to run this workflow manually from the Actions tab
14
+ workflow_dispatch :
15
+
16
+ jobs :
17
+ build :
18
+ runs-on : ubuntu-22.04
19
+ steps :
20
+ - uses : actions/checkout@v3
21
+ - name : Build Setup
22
+ uses : actions/setup-node@v3
23
+ with :
24
+ node-version : ' 16'
25
+ cache : ' npm'
26
+ - name : Build
27
+ run : |
28
+ npm install -g grunt-cli@0.1.13
29
+ npm i
30
+ npm i
31
+ npm run build:app
32
+ - name : Tests
33
+ run : |
34
+ npm run test:app -- --browsers=ChromeHeadless
35
+ npm run e2e -- --browsers=ChromeHeadless
36
+
Original file line number Diff line number Diff line change 51
51
"jshint-stylish" : " ~1.0.0" ,
52
52
"karma" : " 0.12.32" ,
53
53
"karma-browserstack-launcher" : " 0.1.2" ,
54
- "karma-chrome-launcher" : " 0.1.5 " ,
54
+ "karma-chrome-launcher" : " 2.2.0 " ,
55
55
"karma-firefox-launcher" : " 0.1.3" ,
56
56
"karma-jasmine" : " 0.1.5" ,
57
57
"karma-junit-reporter" : " 0.2.2" ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ config.specs = [
9
9
] ;
10
10
11
11
config . capabilities = {
12
- browserName : 'chrome' ,
12
+ browserName : 'chrome'
13
13
} ;
14
14
15
15
exports . config = config ;
You can’t perform that action at this time.
0 commit comments