diff --git a/.github/workflows/ci-pull-requests.yml b/.github/workflows/ci-pull-requests.yml index e87b1a6d925f6..0fb9809582f7e 100644 --- a/.github/workflows/ci-pull-requests.yml +++ b/.github/workflows/ci-pull-requests.yml @@ -18,7 +18,7 @@ jobs: uses: actions/setup-node@v3.7.0 with: node-version: 18.x - cache: pnpm + # cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile @@ -26,19 +26,19 @@ jobs: - name: Build run: pnpm build - - name: Cache build artifacts - uses: actions/cache/save@v3.3.1 - with: - path: ./packages/**/dist - key: ${{ github.sha }}-base:18-test-lint + # - name: Cache build artifacts + # uses: actions/cache/save@v3.3.1 + # with: + # path: ./packages/**/dist + # key: ${{ github.sha }}-base:18-test-lint unit-test: name: Unit tests uses: ./.github/workflows/units-tests-reusable.yml needs: install - with: - ref: ${{ github.event.pull_request.head.ref }} - cacheKey: ${{ github.sha }}-base:18-test-lint + # with: + # ref: ${{ github.event.pull_request.head.ref }} + # cacheKey: ${{ github.sha }}-base:18-test-lint lint: name: Lint changes @@ -63,9 +63,9 @@ jobs: - name: Restore cached build artifacts uses: actions/cache/restore@v3.3.1 - with: - path: ./packages/**/dist - key: ${{ github.sha }}-base:18-test-lint + # with: + # path: ./packages/**/dist + # key: ${{ github.sha }}-base:18-test-lint - name: Lint run: pnpm lint