From 06483bc59d5fb8af3c84147e06788ff8752a5989 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 15 Dec 2022 14:24:59 -0700 Subject: [PATCH] refactor: rm node_mods caching in release workflow (#5895) --- .github/workflows/release.yaml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5ba764c44..f3725dad5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -67,22 +67,12 @@ jobs: - name: Decompress npm package run: tar -xzf package.tar.gz - - name: Fetch dependencies from cache - id: cache-node-modules - uses: actions/cache@v3 - with: - path: "**/node_modules" - key: yarn-build-linux-amd64-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - yarn-build-linux-amd64- - # NOTE: && here is deliberate - GitHub puts each line in its own `.sh` # file when running inside a docker container. - name: Build standalone release run: source scl_source enable devtoolset-9 && npm run release:standalone - name: Install test dependencies - if: steps.cache-node-modules.outputs.cache-hit != 'true' run: SKIP_SUBMODULE_DEPS=1 yarn --frozen-lockfile - name: Run integration tests on standalone release @@ -237,20 +227,10 @@ jobs: - name: Decompress npm package run: tar -xzf package.tar.gz - - name: Fetch dependencies from cache - id: cache-node-modules - uses: actions/cache@v3 - with: - path: "**/node_modules" - key: yarn-build-macos-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - yarn-build-macos- - - name: Build standalone release run: npm run release:standalone - name: Install test dependencies - if: steps.cache-node-modules.outputs.cache-hit != 'true' run: SKIP_SUBMODULE_DEPS=1 yarn install - name: Run native module tests on standalone release