Skip to content

Commit ce6168f

Browse files
build(ci): disable yarn caching until actions/setup-node#1027 is resolved
1 parent a450cd3 commit ce6168f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717

18+
- name: Run corepack enable
19+
run: corepack enable
20+
1821
- name: Setup Node
1922
uses: actions/setup-node@v4
2023
with:
2124
node-version: 20
22-
cache: yarn
25+
# cache: yarn
2326

2427
- name: Install project
2528
run: yarn install --frozen-lockfile
@@ -37,11 +40,14 @@ jobs:
3740
steps:
3841
- uses: actions/checkout@v4
3942

43+
- name: Run corepack enable
44+
run: corepack enable
45+
4046
- name: Setup Node
4147
uses: actions/setup-node@v4
4248
with:
4349
node-version: 20
44-
cache: yarn
50+
# cache: yarn
4551

4652
- name: Install project
4753
run: yarn install --frozen-lockfile

0 commit comments

Comments
 (0)