@@ -48,13 +48,16 @@ jobs:
48
48
run : npm run test:typescript
49
49
50
50
- name : Run Node tests
51
- run : npm run coverage :node
51
+ run : npm run test :node
52
52
53
- - name : Send code coverage results to Coveralls
54
- uses :
coverallsapp/[email protected]
55
- with :
56
- github-token : ${{ secrets.GITHUB_TOKEN }}
57
- parallel : true
53
+ # - name: Run Node tests
54
+ # run: npm run coverage:node
55
+
56
+ # - name: Send code coverage results to Coveralls
57
+ # uses: coverallsapp/[email protected]
58
+ # with:
59
+ # github-token: ${{ secrets.GITHUB_TOKEN }}
60
+ # parallel: false
58
61
59
62
browser_tests :
60
63
name : Browser Tests
64
67
fail-fast : true
65
68
matrix :
66
69
os :
67
- - ubuntu-latest # Chrome, Firefox
68
- - windows-latest # Internet Explorer
70
+ - ubuntu-latest # Chrome, Firefox
71
+ - windows-latest # Internet Explorer
69
72
70
73
steps :
71
74
- name : Checkout source
@@ -80,36 +83,36 @@ jobs:
80
83
run : npm ci
81
84
82
85
- name : Run tests
83
- run : npm run coverage :browser
84
- env :
85
- SAUCE_USERNAME : ${{ secrets.SAUCE_USERNAME }}
86
- SAUCE_ACCESS_KEY : ${{ secrets.SAUCE_ACCESS_KEY }}
87
-
88
- - name : Combine code coverage data into a single file
89
- shell : bash
90
- run : |
91
- ls -Rlh coverage/*/lcov.info
92
- cat coverage/*/lcov.info > ./coverage/lcov.info
93
-
94
- - name : Send code coverage results to Coveralls
95
- uses :
coverallsapp/[email protected]
96
- with :
97
- github-token : ${{ secrets.GITHUB_TOKEN }}
98
- parallel : true
99
-
100
- coverage :
101
- name : Code Coverage
102
- runs-on : ubuntu-latest
103
- timeout-minutes : 5
104
- needs :
105
- - node_tests
106
- - browser_tests
107
- steps :
108
- - name : Let Coveralls know that all tests have finished
109
- uses :
coverallsapp/[email protected]
110
- with :
111
- github-token : ${{ secrets.GITHUB_TOKEN }}
112
- parallel-finished : true
86
+ run : npm run test :browser
87
+
88
+ # - name: Run tests
89
+ # run: npm run coverage:browser
90
+
91
+ # - name: Combine code coverage data into a single file
92
+ # shell: bash
93
+ # run: |
94
+ # ls -Rlh coverage/*/lcov.info
95
+ # cat coverage/*/lcov.info > ./coverage/lcov.info
96
+
97
+ # - name: Send code coverage results to Coveralls
98
+ # uses: coverallsapp/[email protected]
99
+ # with:
100
+ # github-token: ${{ secrets.GITHUB_TOKEN }}
101
+ # parallel: true
102
+
103
+ # coverage:
104
+ # name: Code Coverage
105
+ # runs-on: ubuntu-latest
106
+ # timeout-minutes: 5
107
+ # needs:
108
+ # - node_tests
109
+ # - browser_tests
110
+ # steps:
111
+ # - name: Let Coveralls know that all tests have finished
112
+ # uses: coverallsapp/[email protected]
113
+ # with:
114
+ # github-token: ${{ secrets.GITHUB_TOKEN }}
115
+ # parallel-finished: true
113
116
114
117
release :
115
118
name : Release
0 commit comments