From 096cda2b1e598dcae35ecec8a51de16f5862d18a Mon Sep 17 00:00:00 2001 From: Simon Schneegans Date: Sat, 15 Aug 2020 13:32:11 +0200 Subject: [PATCH] :wrench: Test once more... --- index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index e435b9b..7b4384a 100644 --- a/index.js +++ b/index.js @@ -66,6 +66,9 @@ try { }; data = JSON.stringify(data); + console.log('test 0'); + + const req = http.request( { host: 'api.github.com', @@ -90,10 +93,12 @@ try { }); }); + console.log('test 1'); req.write(data); + console.log('test 2'); req.end(); - console.log('all done'); + console.log('test 3'); } catch (error) { core.setFailed(error);