summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml')
-rw-r--r--deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml b/deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml
new file mode 100644
index 0000000000..48a42372c2
--- /dev/null
+++ b/deps/npm/node_modules/node-gyp/gyp/.github/workflows/nodejs-windows.yml
@@ -0,0 +1,27 @@
+name: Node.js Windows integration
+
+on: [push, pull_request]
+
+jobs:
+ build-windows:
+ runs-on: windows-latest
+ steps:
+ - name: Clone node-gyp
+ uses: actions/checkout@v2
+ with:
+ path: gyp-next
+ - name: Clone nodejs/node
+ uses: actions/checkout@v2
+ with:
+ repository: nodejs/node
+ path: node
+ - name: Install deps
+ run: choco install nasm
+ - name: Replace gyp in Node.js
+ run: |
+ rm -Recurse node/tools/gyp
+ cp -Recurse gyp-next node/tools/gyp
+ - name: Build Node.js
+ run: |
+ cd node
+ ./vcbuild.bat