From 2e04949b0ae159d2cf49af996345f11922892efb Mon Sep 17 00:00:00 2001 From: fabianmoronzirfas Date: Mon, 9 Mar 2020 15:20:41 +0100 Subject: [PATCH] ci(coverage): Add coverall parallel --- .github/workflows/tests.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e3db6b8..d76a177 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,7 +1,7 @@ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: Node.js CI +name: Node.js Test CI on: push: @@ -28,7 +28,15 @@ jobs: - run: npm run test:ci -- --no-color env: CI: true - - name: Coveralls + - name: Coveralls Parallel uses: coverallsapp/github-action@master with: - github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true + path-to-lcov: ./coverage/lcov.info # optional (default value) + + - name: Coveralls Finished + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel-finished: true \ No newline at end of file