File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 36
36
- uses : actions/setup-node@v5
37
37
with :
38
38
node-version : ${{ matrix.node }}
39
+ package-manager-cache : false # pnpm is not installed yet
39
40
- name : install pnpm
40
41
shell : bash
41
42
run : |
45
46
- uses : actions/setup-node@v5
46
47
with :
47
48
node-version : ${{ matrix.node }}
48
- cache : ' pnpm'
49
- cache-dependency-path : ' **/pnpm-lock.yaml'
49
+ package-manager-cache : true # caches pnpm via packageManager field in package.json
50
50
- name : install
51
51
run : pnpm install --frozen-lockfile --prefer-offline --ignore-scripts
52
52
- name : sync
Original file line number Diff line number Diff line change 30
30
- uses : actions/setup-node@v5
31
31
with :
32
32
node-version : ${{ matrix.node }}
33
+ package-manager-cache : false # pnpm is not installed yet
33
34
- name : install pnpm
34
35
shell : bash
35
36
run : |
39
40
- uses : actions/setup-node@v5
40
41
with :
41
42
node-version : ${{ matrix.node }}
42
- cache : ' pnpm'
43
- cache-dependency-path : ' **/pnpm-lock.yaml'
43
+ package-manager-cache : true # caches pnpm via packageManager field in package.json
44
44
- name : install
45
45
run : pnpm install --frozen-lockfile --prefer-offline --ignore-scripts
46
46
- name : generated types are up to date
You can’t perform that action at this time.
0 commit comments