From f513c6c10c3d568f005a9174a14544616113eabc Mon Sep 17 00:00:00 2001 From: thegu5 <58223632+thegu5@users.noreply.github.com> Date: Sat, 25 May 2024 21:36:11 -0400 Subject: [PATCH] Remove npm caching for neutralino build --- .github/workflows/neutralino-build.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/neutralino-build.yml b/.github/workflows/neutralino-build.yml index 77fa267..3992c5b 100644 --- a/.github/workflows/neutralino-build.yml +++ b/.github/workflows/neutralino-build.yml @@ -17,19 +17,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16.x - - name: Get npm cache directory - id: npm-cache-dir - run: | - echo "::set-output name=dir::$(npm config get cache)" - - uses: actions/cache@v3 - id: npm-cache - with: - path: ${{ steps.npm-cache-dir.outputs.dir }} - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - run: npm i -g @neutralinojs/neu - if: steps.npm-cache.outputs.cache-hit != 'true' - run: neu update - run: neu build - name: Upload a Build Artifact