From 3760feb5ecc15bc234c8147a69fa45f15719f709 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Mon, 17 Nov 2025 17:21:12 +0000 Subject: [PATCH] ci: remove cache usage from pr.yml Remove the @actions/cache usages from pr.yml --- .github/workflows/pr.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a976ccb110c..7406197a828 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -52,11 +52,6 @@ jobs: uses: angular/dev-infra/github-actions/bazel/setup@c855fffb4b01bc06e743eb3bdfd54c866af09ad8 - name: Setup Bazel RBE uses: angular/dev-infra/github-actions/bazel/configure-remote@c855fffb4b01bc06e743eb3bdfd54c866af09ad8 - - name: Cache downloaded Cypress binary - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 - with: - path: '~/.cache/Cypress' - key: cypress-cache-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} - name: Install node modules run: pnpm install --frozen-lockfile - name: Run unit tests @@ -139,11 +134,6 @@ jobs: uses: angular/dev-infra/github-actions/bazel/configure-remote@c855fffb4b01bc06e743eb3bdfd54c866af09ad8 - name: Install node modules run: pnpm install --frozen-lockfile - - name: Cache downloaded vscode binary - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 - with: - path: '~/.cache/vscode-test' - key: vscode-cache-${{ runner.os }}-${{ hashFiles('vscode-ng-language-service/integration/e2e/index.ts') }} # The version is specified in this file. - name: Run tests run: pnpm bazel test //vscode-ng-language-service/...