Skip to content

Commit 3e63756

Browse files
committed
Clear cache on GH actions
1 parent 343476f commit 3e63756

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/checks.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ jobs:
1414
- uses: actions/setup-node@v4
1515
with:
1616
node-version-file: '.nvmrc'
17-
cache: 'yarn'
1817

1918
- name: Enable Corepack
2019
run: corepack enable
2120

21+
- name: Clear Yarn Cache
22+
run: yarn cache clean --all
23+
2224
- name: Install Dependencies
23-
run: yarn
25+
run: yarn install --no-immutable
2426

2527
- name: Build All Packages
2628
run: yarn build:all

.github/workflows/coverage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,18 @@ jobs:
2323
uses: actions/setup-node@v4
2424
with:
2525
node-version-file: '.nvmrc'
26-
cache: 'yarn'
2726

2827
- uses: browser-actions/setup-chrome@v1
2928
- run: chrome --version
3029

3130
- name: Enable Corepack
3231
run: corepack enable
3332

33+
- name: Clear Yarn Cache
34+
run: yarn cache clean --all
35+
3436
- name: Install dependencies
35-
run: yarn
37+
run: yarn install --no-immutable
3638

3739
- name: Build packages
3840
run: yarn build:all

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,15 @@ jobs:
2121
uses: actions/setup-node@v4
2222
with:
2323
node-version-file: '.nvmrc'
24-
cache: 'yarn'
2524

2625
- name: Enable Corepack
2726
run: corepack enable
2827

28+
- name: Clear Yarn Cache
29+
run: yarn cache clean --all
30+
2931
- name: Install Dependencies
30-
run: yarn
32+
run: yarn install --no-immutable
3133

3234
- name: Build Packages
3335
run: yarn build:all

0 commit comments

Comments
 (0)