Skip to content

Commit 728ec54

Browse files
committed
Resolve lints in action.yml
1 parent 071cabe commit 728ec54

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/actions/setup/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ runs:
2424
registry-url: 'https://registry.npmjs.org'
2525
cache: pnpm
2626

27-
- run: pnpm install ${{ fromJSON('{"false":"--no-lockfile", "true":"--frozen-lockfile"}')[inputs.use_lockfile] }}
27+
- run: pnpm install ${INSTALL_OPTIONS}
28+
env:
29+
INSTALL_OPTIONS: ${{ fromJSON('{"false":"--no-lockfile", "true":"--frozen-lockfile"}')[inputs.use_lockfile] }}
2830
shell: bash

0 commit comments

Comments
 (0)