Skip to content

Commit e6b39bb

Browse files
ci: Use parallel coveralls config (#461)
1 parent bc854b0 commit e6b39bb

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jobs:
3030
- run: npm run test:unit
3131

3232
- name: Coveralls
33-
uses: coverallsapp/github-action@master
33+
uses: coverallsapp/github-action@v1
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636
path-to-lcov: ./build/coverage/lcov.info
37+
parallel: true
3738

3839
lint:
3940
runs-on: ubuntu-latest
@@ -44,3 +45,12 @@ jobs:
4445
node-version: "20.x"
4546
- run: npm ci
4647
- run: npm run lint
48+
49+
finish-coveralls:
50+
needs: build
51+
runs-on: ubuntu-latest
52+
steps:
53+
- name: Close parallel build
54+
uses: coverallsapp/github-action@v1
55+
with:
56+
parallel-finished: true

0 commit comments

Comments
 (0)