Skip to content

Commit bb40696

Browse files
committed
fix: typo with corepack
fix: typo with corepack (2) feat: basic yarn cache, and correct args fix: remove yarn cache, action requires different orderings fix: attempt cache with differrent orderings fix: attempt to remove chicken egg problem with cache formatting
1 parent 67109bb commit bb40696

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/actions/ci-setup/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ name: Setup CI
33
runs:
44
using: composite
55
steps:
6+
- name: Enable corepack
7+
shell: bash
8+
run: corepack enable
9+
610
- name: Setup Node.js
711
uses: actions/setup-node@v4
812
with:
913
node-version-file: ".node-version"
10-
run: corepack enable
14+
cache: "yarn"
1115

1216
- name: Install dependencies
1317
shell: bash
14-
run: yarn install --frozen-lockfile
18+
run: yarn install --immutable

0 commit comments

Comments
 (0)