Skip to content

Commit e3b81fc

Browse files
authored
chore(ci): remove caching (#2567)
1 parent ecc6b28 commit e3b81fc

File tree

5 files changed

+0
-68
lines changed

5 files changed

+0
-68
lines changed

.github/workflows/lint.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,7 @@ jobs:
2121
uses: actions/checkout@v4
2222
- name: pnpm setup
2323
uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0
24-
- name: pnpm Cache
25-
id: pnpm-cache
26-
uses: buildjet/cache@9347ea1c7c1f331d397aa98b3894420448373372
27-
with:
28-
path: |
29-
~/.pnpm-store
30-
node_modules
31-
*/*/node_modules
32-
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
33-
restore-keys: |
34-
${{ runner.os }}-pnpm-
3524
- name: Install packages
36-
if: steps.pnpm-cache.outputs.cache-hit != 'true'
3725
run: pnpm install --frozen-lockfile
3826
- name: Run Lint
3927
run: pnpm lint

.github/workflows/preview-release.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,8 @@ jobs:
1818
uses: actions/checkout@v4
1919
- name: pnpm setup
2020
uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0
21-
- name: pnpm Cache
22-
id: pnpm-cache
23-
uses: buildjet/cache@9347ea1c7c1f331d397aa98b3894420448373372
24-
with:
25-
path: |
26-
~/.pnpm-store
27-
node_modules
28-
*/*/node_modules
29-
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
30-
restore-keys: |
31-
${{ runner.os }}-pnpm-
3221
- name: Install packages
33-
if: steps.pnpm-cache.outputs.cache-hit != 'true'
3422
run: pnpm install --frozen-lockfile
35-
- name: turborepo Cache
36-
uses: rharkor/caching-for-turbo@8434baaaec555ed7ef66132f2e8a09e65ec68c19
37-
with:
38-
cache-prefix: ${{ runner.os }}-turbo-
39-
provider: github
4023
- name: Run Build
4124
run: pnpm build
4225
env:

.github/workflows/release-canary.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,7 @@ jobs:
2626
corepack enable
2727
corepack prepare pnpm@9.15.0 --activate
2828
pnpm config set script-shell "/usr/bin/bash"
29-
- name: pnpm Cache
30-
uses: buildjet/cache@9347ea1c7c1f331d397aa98b3894420448373372
31-
with:
32-
path: |
33-
~/.pnpm-store
34-
node_modules
35-
*/*/node_modules
36-
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
37-
restore-keys: |
38-
${{ runner.os }}-pnpm-
3929
- name: Install packages
40-
if: steps.pnpm-cache.outputs.cache-hit != 'true'
4130
run: pnpm install --frozen-lockfile
4231
- name: Enter prerelease mode
4332
# This step errors if it is already in prerelease mode

.github/workflows/release.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,6 @@ jobs:
2121
node-version: 22
2222
- name: pnpm setup
2323
uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0
24-
- name: pnpm Cache
25-
id: pnpm-cache
26-
uses: buildjet/cache@9347ea1c7c1f331d397aa98b3894420448373372
27-
with:
28-
path: |
29-
~/.pnpm-store
30-
node_modules
31-
*/*/node_modules
32-
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
33-
restore-keys: |
34-
${{ runner.os }}-pnpm-
3524
- name: Install packages
3625
if: steps.pnpm-cache.outputs.cache-hit != 'true'
3726
run: pnpm install --frozen-lockfile

.github/workflows/tests.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,8 @@ jobs:
2323
uses: actions/checkout@v4
2424
- name: pnpm setup
2525
uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0
26-
- name: pnpm Cache
27-
id: pnpm-cache
28-
uses: buildjet/cache@9347ea1c7c1f331d397aa98b3894420448373372
29-
with:
30-
path: |
31-
~/.pnpm-store
32-
node_modules
33-
*/*/node_modules
34-
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
35-
restore-keys: |
36-
${{ runner.os }}-pnpm-
3726
- name: Install packages
38-
if: steps.pnpm-cache.outputs.cache-hit != 'true'
3927
run: pnpm install --frozen-lockfile
40-
- name: turborepo Cache
41-
uses: rharkor/caching-for-turbo@8434baaaec555ed7ef66132f2e8a09e65ec68c19
42-
with:
43-
cache-prefix: ${{ runner.os }}-turbo-
44-
provider: github
4528
- name: Run Build
4629
run: pnpm build
4730
# We include the environment variables here so that the cache for turborepo

0 commit comments

Comments
 (0)