From 73bb2a2ea33ad1e8276724cd2e832d33f3662018 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Sat, 10 Dec 2022 16:13:12 +0200 Subject: [PATCH] ci: skip cache --- .github/workflows/ci.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5432056126..7c67751eb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,18 +45,18 @@ jobs: run: pnpm install - name: Audit run: pnpm audit - - name: Cache TypeScript and Jest - uses: actions/cache@v3 - with: - path: | - packages/*/lib - packages/*/tsconfig.tsbuildinfo - privatePackages/*/lib - privatePackages/*/tsconfig.tsbuildinfo - .jest-cache - .verdaccio-cache - key: ts-jest-${{ matrix.platform }}-${{ matrix.node }}-${{ github.run_id }} - restore-keys: ts-jest-${{ matrix.platform }}-${{ matrix.node }}- + # - name: Cache TypeScript and Jest + # uses: actions/cache@v3 + # with: + # path: | + # packages/*/lib + # packages/*/tsconfig.tsbuildinfo + # privatePackages/*/lib + # privatePackages/*/tsconfig.tsbuildinfo + # .jest-cache + # .verdaccio-cache + # key: ts-jest-${{ matrix.platform }}-${{ matrix.node }}-${{ github.run_id }} + # restore-keys: ts-jest-${{ matrix.platform }}-${{ matrix.node }}- - name: run tests (main) if: github.ref == 'refs/heads/main' run: pnpm run test-main