From 1e2a7c3ba221baa1bca04db8f9231a3a9d35e1a7 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sun, 7 Nov 2021 06:09:52 +0530 Subject: don't use npm cache (since it breaks the CI builds randomly) --- .github/workflows/ferdi-builds.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml index a2bd129..d798b19 100644 --- a/.github/workflows/ferdi-builds.yml +++ b/.github/workflows/ferdi-builds.yml @@ -28,23 +28,6 @@ jobs: run: echo "PNPM_CACHE=$HOME/.pnpm-store" >> $GITHUB_ENV - name: Checkout code uses: actions/checkout@v2 - - name: Cache node modules - uses: actions/cache@v2 - env: - cache-name: cache-node-modules - with: - path: ${{ env.PNPM_CACHE }} - key: build-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - build-${{ env.cache-name }}- - build- - - name: Cache pnpm modules - uses: actions/cache@v2 - env: - cache-name: cache-pnpm-store - with: - path: ${{ env.PNPM_CACHE }} - key: ${{ runner.os }}-16.13-build-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} - name: Use Node.js 16.13.0 uses: actions/setup-node@v2 with: -- cgit v1.2.3-54-g00ecf