@@ -48,11 +48,12 @@ jobs:
48
48
# - name: Run Node tests
49
49
# run: yarn test:node
50
50
51
- - name : Send code coverage results to Coveralls
52
- uses : coverallsapp/github-action@v2
53
- with :
54
- github-token : ${{ secrets.GITHUB_TOKEN }}
55
- parallel : true
51
+ # disabled after refactoring
52
+ # - name: Send code coverage results to Coveralls
53
+ # uses: coverallsapp/github-action@v2
54
+ # with:
55
+ # github-token: ${{ secrets.GITHUB_TOKEN }}
56
+ # parallel: true
56
57
57
58
browser_tests :
58
59
name : Browser Tests
@@ -81,25 +82,27 @@ jobs:
81
82
# - name: Run tests
82
83
# run: yarn test:browser
83
84
84
- - name : Send code coverage results to Coveralls
85
- uses : coverallsapp/github-action@v2
86
- with :
87
- github-token : ${{ secrets.GITHUB_TOKEN }}
88
- parallel : true
89
-
90
- coverage :
91
- name : Code Coverage
92
- runs-on : ubuntu-latest
93
- timeout-minutes : 5
94
- needs :
95
- - node_tests
96
- - browser_tests
97
- steps :
98
- - name : Let Coveralls know that all tests have finished
99
- uses : coverallsapp/github-action@v2
100
- with :
101
- github-token : ${{ secrets.GITHUB_TOKEN }}
102
- parallel-finished : true
85
+ # disabled after refactoring
86
+ # - name: Send code coverage results to Coveralls
87
+ # uses: coverallsapp/github-action@v2
88
+ # with:
89
+ # github-token: ${{ secrets.GITHUB_TOKEN }}
90
+ # parallel: true
91
+
92
+ # disabled after refactoring
93
+ # coverage:
94
+ # name: Code Coverage
95
+ # runs-on: ubuntu-latest
96
+ # timeout-minutes: 5
97
+ # needs:
98
+ # - node_tests
99
+ # - browser_tests
100
+ # steps:
101
+ # - name: Let Coveralls know that all tests have finished
102
+ # uses: coverallsapp/github-action@v2
103
+ # with:
104
+ # github-token: ${{ secrets.GITHUB_TOKEN }}
105
+ # parallel-finished: true
103
106
104
107
release :
105
108
name : Release
0 commit comments