Skip to content

Commit

Permalink
Replace npm bin with hardcoded path
Browse files Browse the repository at this point in the history
Looks like `npm bin` is no more; we're supposed to just hardcode the
path now. That *should* make running c8 coverage report work properly
again, fingers crossed?
  • Loading branch information
anko committed May 16, 2023
1 parent d7d1551 commit dbdf788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: npm run-script test-with-coverage

- name: generate LCOV coverage report
run: $(npm bin)/c8 report --reporter=text-lcov > ./coverage/lcov.info
run: ./node_modules/.bin/c8 report --reporter=text-lcov > ./coverage/lcov.info
- name: upload coverage report to coveralls
uses: coverallsapp/github-action@master
with:
Expand Down

0 comments on commit dbdf788

Please sign in to comment.