aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/node-gyp/.github/workflows/visual-studio.yml
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/node-gyp/.github/workflows/visual-studio.yml')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/node-gyp/.github/workflows/visual-studio.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/node-gyp/.github/workflows/visual-studio.yml b/sandbox/testAppNevena/Front/node_modules/node-gyp/.github/workflows/visual-studio.yml
deleted file mode 100644
index 6bb4574d..00000000
--- a/sandbox/testAppNevena/Front/node_modules/node-gyp/.github/workflows/visual-studio.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Tests on Windows
-on: [push, pull_request]
-jobs:
- Tests:
- strategy:
- fail-fast: false
- max-parallel: 15
- matrix:
- os: [windows-2022]
- runs-on: ${{ matrix.os }}
- steps:
- - name: Checkout Repository
- uses: actions/checkout@v2
- - name: Install Dependencies
- run: |
- npm install --no-progress
- - name: Set Windows environment
- if: matrix.os == 'windows-latest'
- run: |
- echo 'GYP_MSVS_VERSION=2015' >> $Env:GITHUB_ENV
- echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV
- - name: Environment Information
- run: npx envinfo
- - name: Run Node tests
- run: npm test