Skip to content

Commit

Permalink
coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
vbuch committed Oct 4, 2023
1 parent d164c0c commit c6968f0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/not-travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
test:
runs-on: ubuntu-latest
needs: prepare
steps:
- run: ./node_modules/.bin/lerna run test -- --coverage

coveralls:
runs-on: ubuntu-latest
needs: test
strategy:
matrix:
package:
Expand All @@ -27,7 +33,6 @@ jobs:
- placeholder-pdfkit010
- placeholder-plain
steps:
- run: ./node_modules/.bin/lerna run test -- --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand All @@ -37,7 +42,10 @@ jobs:
base-path: packages/$

finish:
needs: test
needs:
- lint
- test
- coveralls
if: $
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit c6968f0

Please sign in to comment.