From 1ed8dabefc8d178e7c6dcfbfe29349e154974ec4 Mon Sep 17 00:00:00 2001
From: eric sciple <ericsciple@users.noreply.github.com>
Date: Fri, 24 Jul 2020 11:58:19 -0400
Subject: [PATCH] testing something

---
 dist/index.js | 3 +++
 src/main.ts   | 5 +++++
 2 files changed, 8 insertions(+)

diff --git a/dist/index.js b/dist/index.js
index ae64f3f..a625934 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -3282,6 +3282,9 @@ const stateHelper = __importStar(__webpack_require__(153));
 function run() {
     return __awaiter(this, void 0, void 0, function* () {
         try {
+            for (const key of Object.keys(process.env)) {
+                console.log(`${key}=${process.env[key]}`);
+            }
             const sourceSettings = inputHelper.getInputs();
             try {
                 // Register problem matcher
diff --git a/src/main.ts b/src/main.ts
index 4702fe0..94dc64e 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -7,6 +7,11 @@ import * as stateHelper from './state-helper'
 
 async function run(): Promise<void> {
   try {
+
+    for (const key of Object.keys(process.env)) {
+      console.log(`${key}=${process.env[key]}`)
+    }
+
     const sourceSettings = inputHelper.getInputs()
 
     try {