We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc854b0 commit e6b39bbCopy full SHA for e6b39bb
.github/workflows/ci.yml
@@ -30,10 +30,11 @@ jobs:
30
- run: npm run test:unit
31
32
- name: Coveralls
33
- uses: coverallsapp/github-action@master
+ uses: coverallsapp/github-action@v1
34
with:
35
github-token: ${{ secrets.GITHUB_TOKEN }}
36
path-to-lcov: ./build/coverage/lcov.info
37
+ parallel: true
38
39
lint:
40
runs-on: ubuntu-latest
@@ -44,3 +45,12 @@ jobs:
44
45
node-version: "20.x"
46
- run: npm ci
47
- run: npm run lint
48
+
49
+ finish-coveralls:
50
+ needs: build
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - name: Close parallel build
54
55
+ with:
56
+ parallel-finished: true
0 commit comments