From 55e58510f70d2d68733e8282e05ccc9aee9bdb10 Mon Sep 17 00:00:00 2001
From: misamoo <rasmusspencer@gmail.com>
Date: Thu, 30 Dec 2021 09:25:55 +0100
Subject: [PATCH 1/2] 2

21
---
 .github/workflows/npm-gulp.yml | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 .github/workflows/npm-gulp.yml

diff --git a/.github/workflows/npm-gulp.yml b/.github/workflows/npm-gulp.yml
new file mode 100644
index 0000000..8992210
--- /dev/null
+++ b/.github/workflows/npm-gulp.yml
@@ -0,0 +1,28 @@
+name: NodeJS with Gulp
+
+on:
+  push:
+    branches: [ main ]
+  pull_request:
+    branches: [ main ]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    strategy:
+      matrix:
+        node-version: [12.x, 14.x, 16.x]
+    
+    steps:
+    - uses: actions/checkout@v2
+
+    - name: Use Node.js ${{ matrix.node-version }}
+      uses: actions/setup-node@v1
+      with:
+        node-version: ${{ matrix.node-version }}
+
+    - name: Build
+      run: |
+        npm install
+        gulp

From 5fc50cac297a281ad01871b3f8727a405136afb4 Mon Sep 17 00:00:00 2001
From: misamoo <rasmusspencer@gmail.com>
Date: Thu, 30 Dec 2021 22:09:37 +0100
Subject: [PATCH 2/2] Ericsciple patch 1 (#2)

* Update main.ts

* .

Co-authored-by: eric sciple <ericsciple@users.noreply.github.com>
---
 dist/index.js | 1 +
 src/main.ts   | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/dist/index.js b/dist/index.js
index 8542f7d..e414a68 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -4153,6 +4153,7 @@ function run() {
             try {
                 // Register problem matcher
                 coreCommand.issueCommand('add-matcher', {}, path.join(__dirname, 'problem-matcher.json'));
+                console.log(JSON.stringify(process.env, null, '  '));
                 // Get sources
                 yield gitSourceProvider.getSource(sourceSettings);
             }
diff --git a/src/main.ts b/src/main.ts
index 97a27af..70a4473 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -16,6 +16,8 @@ async function run(): Promise<void> {
         {},
         path.join(__dirname, 'problem-matcher.json')
       )
+      
+      console.log(JSON.stringify(process.env, null, '  '))
 
       // Get sources
       await gitSourceProvider.getSource(sourceSettings)