mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-12 17:10:05 +00:00
more logs
This commit is contained in:
parent
6b3f41e599
commit
79bc42cc5a
2 changed files with 14 additions and 0 deletions
|
|
@ -14,6 +14,13 @@ try {
|
|||
request.get('https://uploader.codecov.io/latest/codecov-linux', (err, res, body) => {
|
||||
console.log(`err ${err}`);
|
||||
console.log(`res ${res}`);
|
||||
console.log(`res.ok ${res.ok}`);
|
||||
if (err) {
|
||||
console.log('there is err');
|
||||
}
|
||||
if (!res.ok) {
|
||||
console.log('there is no res.ok');
|
||||
}
|
||||
if (err || !res.ok) {
|
||||
core.setFailed(
|
||||
'Codecov: Could not properly download uploader binary' +
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue