File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
.github/actions/setup-tools Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- name : ' Setup Tools'
2- description : ' Setup tools needed in repo'
1+ name : " Setup Tools"
2+ description : " Setup tools needed in repo"
33
44inputs :
55 skip-install-on-cache-hit :
6- description : ' If a Cache Hit happens, skip pnpm install'
6+ description : " If a Cache Hit happens, skip pnpm install"
77 required : true
8- default : ' false'
8+ default : " false"
99
1010runs :
11- using : ' composite'
11+ using : " composite"
1212 steps :
1313 - name : Install Node.js
1414 uses : actions/setup-node@v3
4242 - name : Install dependencies
4343 if : inputs.skip-install-on-cache-hit == 'false' || (inputs.skip-install-on-cache-hit == 'true' && steps.cache-pnpm-store.cache-hit == 'false')
4444 shell : bash
45- run : pnpm install
45+ run : pnpm install --no-frozen-lockfile
You can’t perform that action at this time.
0 commit comments