I followed this setup guide: Integrating with coveralls.io This was perfect for Travis-CI, using coveralls and nyc. But recently when migrating to GitHub Actions, that step started failing with this error:
> [email protected] coverage /home/runner/work/js-big-decimal/js-big-decimal
> nyc report --reporter=text-lcov | coveralls
/home/runner/work/js-big-decimal/js-big-decimal/node_modules/coveralls/bin/coveralls.js:19
throw err;
^
Bad response: 422 {"message":"Couldn't find a repository matching this job.","error":true}
(Use `node --trace-uncaught ...` to show where the exception was thrown)
npm ERR! code ELIFECYCLE
What is the best way to make it work?
Originally posted on Ones and Zeros