From 2c38de453b5178b24595ccfe96439905281b1898 Mon Sep 17 00:00:00 2001 From: Michael Cousins Date: Tue, 2 May 2023 10:59:09 -0400 Subject: [PATCH] ci: properly configure coveralls parallel label (#94) --- .github/workflows/ci-cd.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index f1c30ce..fad07f9 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -46,10 +46,10 @@ jobs: run: npm run coverage - name: Send code coverage results to Coveralls - uses: coverallsapp/github-action@045a25193560dc194e405657f552faeb6b9433aa + uses: coverallsapp/github-action@f350da2c033043742f89e8c0b7b5145a1616da6d with: - github-token: ${{ secrets.GITHUB_TOKEN }} parallel: true + flag-name: Node.js ${{ matrix.node-version }} / ${{ matrix.os }} coverage: name: Code Coverage @@ -58,9 +58,8 @@ jobs: needs: test steps: - name: Let Coveralls know that all tests have finished - uses: coverallsapp/github-action@045a25193560dc194e405657f552faeb6b9433aa + uses: coverallsapp/github-action@f350da2c033043742f89e8c0b7b5145a1616da6d with: - github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true build: