From 03b200e37b421aa13bb79c3c6bc4378f12c09d8d Mon Sep 17 00:00:00 2001 From: einaralex Date: Fri, 23 Aug 2024 01:28:03 +0000 Subject: [PATCH] deploy: 8f25368eabb156c2db9ff26cbb0e3c299796dfb2 --- .github/actions/cache-setup/action.yml | 27 -------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/actions/cache-setup/action.yml diff --git a/.github/actions/cache-setup/action.yml b/.github/actions/cache-setup/action.yml deleted file mode 100644 index e1bd29f5..00000000 --- a/.github/actions/cache-setup/action.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: "Cache setup." -description: "Speed up pnpm installation and turbo runs with caching." -branding: - icon: "box" - color: "blue" -runs: - using: composite - steps: - - uses: actions/checkout@v4 - - name: Cache turbo build setup - uses: actions/cache@v4 - with: - path: .turbo - key: ${{ runner.os }}-turbo-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-turbo- - - name: Install pnpm - uses: pnpm/action-setup@v4 - - name: Install Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - registry-url: "https://registry.npmjs.org" - cache: "pnpm" - - name: Install dependencies - run: pnpm install --frozen-lockfile - shell: bash