1name: Node.js Windows integration 2 3on: [push, pull_request] 4 5jobs: 6 build-windows: 7 runs-on: windows-latest 8 steps: 9 - name: Clone gyp-next 10 uses: actions/checkout@v3 11 with: 12 path: gyp-next 13 - name: Clone nodejs/node 14 uses: actions/checkout@v3 15 with: 16 repository: nodejs/node 17 path: node 18 - name: Install deps 19 run: choco install nasm 20 - name: Replace gyp in Node.js 21 run: | 22 rm -Recurse node/tools/gyp 23 cp -Recurse gyp-next node/tools/gyp 24 - name: Build Node.js 25 run: | 26 cd node 27 ./vcbuild.bat 28