🔧 Test once more...

This commit is contained in:
Simon Schneegans
2020-08-15 13:32:11 +02:00
parent d5c3a8eb60
commit 096cda2b1e

View File

@@ -66,6 +66,9 @@ try {
}; };
data = JSON.stringify(data); data = JSON.stringify(data);
console.log('test 0');
const req = http.request( const req = http.request(
{ {
host: 'api.github.com', host: 'api.github.com',
@@ -90,10 +93,12 @@ try {
}); });
}); });
console.log('test 1');
req.write(data); req.write(data);
console.log('test 2');
req.end(); req.end();
console.log('all done'); console.log('test 3');
} catch (error) { } catch (error) {
core.setFailed(error); core.setFailed(error);