Skip to content

Commit 06c8a4b

Browse files
authored
Support parallel builds (#955)
1 parent 4971749 commit 06c8a4b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,20 @@ jobs:
5353

5454
- name: Upload coverage
5555
if: '${{ matrix.node == env.NODE_VERSION }}'
56-
#uses: codecov/codecov-action@v5
5756
uses: coverallsapp/github-action@v2
57+
with:
58+
parallel: true
59+
flag-name: test-${{ matrix.os }}
60+
61+
finish:
62+
needs: tests
63+
if: ${{ always() }}
64+
runs-on: ubuntu-latest
65+
steps:
66+
- name: Close parallel build
67+
uses: coverallsapp/github-action@v2
68+
with:
69+
parallel-finished: true
5870

5971
lint:
6072
name: Lint

0 commit comments

Comments
 (0)