]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Change to coveralls action (#8029)
authorJukka Kurkela <jukka.kurkela@gmail.com>
Tue, 10 Nov 2020 15:21:38 +0000 (17:21 +0200)
committerGitHub <noreply@github.com>
Tue, 10 Nov 2020 15:21:38 +0000 (17:21 +0200)
* Change to coveralls action

* Parallel coveralls

.github/workflows/ci.yml

index b366dba83ff9a0833cf1ca8935e1d8533824b618..ba8d27a7f137da04f5a1e4b88fb10d38d7fccfe0 100644 (file)
@@ -49,7 +49,20 @@ jobs:
         npm run docs
         npm run typedoc
         npm pack
-    - name: Publish Test Results
-      run: cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
-      shell: bash
-      continue-on-error: true
+    - name: Coveralls Parallel
+      uses: coverallsapp/github-action@master
+      with:
+        github-token: ${{ secrets.github_token }}
+        flag-name: run-${{ matrix.os }}
+        parallel: true
+
+
+  finish:
+    needs: build
+    runs-on: ubuntu-latest
+    steps:
+    - name: Coveralls Finished
+      uses: coverallsapp/github-action@master
+      with:
+        github-token: ${{ secrets.github_token }}
+        parallel-finished: true