Skip to content

Commit

Permalink
Support parallel builds (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
danez authored Dec 6, 2024
1 parent 4971749 commit 06c8a4b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,20 @@ jobs:

- name: Upload coverage
if: '${{ matrix.node == env.NODE_VERSION }}'
#uses: codecov/codecov-action@v5
uses: coverallsapp/github-action@v2
with:
parallel: true
flag-name: test-${{ matrix.os }}

finish:
needs: tests
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Close parallel build
uses: coverallsapp/github-action@v2
with:
parallel-finished: true

lint:
name: Lint
Expand Down

0 comments on commit 06c8a4b

Please sign in to comment.