From 0836aecfdefaad25ac1f7278353978acc33f300d Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 29 Mar 2024 05:52:10 +0100 Subject: [PATCH] Update configure.yml --- .github/workflows/configure.yml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index 7ea0fe0..ef7439c 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml @@ -22,20 +22,18 @@ jobs: node-version: ${{ matrix.node-version }} - run: | node-gyp --version || true - gyp --version || true npm config list -l npm install --global node-gyp@latest node-gyp --version npm config set node_gyp $(npm prefix -g)/lib/node_modules/node-gyp/bin/node-gyp.js - node-gyp --version - - name: install dependencies and test + npm config list -l + shell: bash + - run: npm install + shell: bash + - run: npm test + shell: bash + - run: node-gyp configure shell: bash - run: | - npm install - npm test - - name: build with node-gyp + - run: node-gyp rebuild shell: bash - run: | - # npm install -g node-gyp - node-gyp configure - node-gyp rebuild +