From 34df011b06d628be5974145668000a66bb0b4b77 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Thu, 4 Feb 2021 11:39:40 -0600 Subject: [PATCH] Don't cache node_modules in CI --- .github/workflows/ci.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61a62ddf5b..97ab544d2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,14 +18,6 @@ jobs: node-version: '12.18.3' - run: npm install -g yarn@1.22.0 - - name: Cache node modules - uses: actions/cache@v1 - env: - cache-name: cache-node-modules - with: - path: node_modules - key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}-${{ hashFiles('patches/*') }} - - run: yarn install --frozen-lockfile - run: yarn generate - run: yarn lint @@ -46,14 +38,6 @@ jobs: node-version: '12.18.3' - run: npm install -g yarn@1.22.0 - - name: Cache node modules - uses: actions/cache@v1 - env: - cache-name: cache-node-modules - with: - path: node_modules - key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}-${{ hashFiles('patches/*') }} - - run: yarn install --frozen-lockfile - run: yarn generate - run: yarn lint @@ -79,14 +63,6 @@ jobs: - run: sudo apt-get install xvfb - run: npm install -g yarn@1.22.0 - - name: Cache node modules - uses: actions/cache@v1 - env: - cache-name: cache-node-modules - with: - path: node_modules - key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}-${{ hashFiles('patches/*') }} - - run: yarn install --frozen-lockfile - run: yarn generate - run: yarn lint @@ -115,14 +91,6 @@ jobs: node-version: '12.18.3' - run: npm install -g yarn@1.22.0 - - name: Cache node modules - uses: actions/cache@v1 - env: - cache-name: cache-node-modules - with: - path: node_modules - key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}-${{ hashFiles('patches/*') }} - - run: yarn install --frozen-lockfile - run: yarn generate - run: yarn lint