From 1ddee64c8bd818ec48684d2d7cd4c78a43197861 Mon Sep 17 00:00:00 2001 From: James Sumners Date: Wed, 29 May 2024 13:06:56 -0400 Subject: [PATCH] update node-gyp --- .github/workflows/ci-workflow.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index a678503583..8ee093d695 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -82,6 +82,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + - name: Update node-gyp + run: npm install --global node-gyp@latest - name: Install Dependencies run: npm install - name: Run CI Script Unit Tests @@ -108,6 +110,8 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install Dependencies run: npm install + - name: Update node-gyp + run: npm install --global node-gyp@latest - name: Run Unit Tests run: npm run unit - name: Archive Unit Test Coverage @@ -138,6 +142,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + - name: Update node-gyp + run: npm install --global node-gyp@latest - name: Install Dependencies run: npm install - name: Run Docker Services @@ -176,6 +182,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + - name: Update node-gyp + run: npm install --global node-gyp@latest - name: Install Dependencies run: npm install - name: Run Docker Services @@ -227,6 +235,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + - name: Update node-gyp + run: npm install --global node-gyp@latest - name: Install Dependencies run: npm install - name: Run Versioned Tests