Skip to content

Commit 4716eea

Browse files
chore(ci): no frozen lockfile
1 parent 9df3e6d commit 4716eea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
name: 'Setup Tools'
2-
description: 'Setup tools needed in repo'
1+
name: "Setup Tools"
2+
description: "Setup tools needed in repo"
33

44
inputs:
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

1010
runs:
11-
using: 'composite'
11+
using: "composite"
1212
steps:
1313
- name: Install Node.js
1414
uses: actions/setup-node@v3
@@ -42,4 +42,4 @@ runs:
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

0 commit comments

Comments
 (0)