Skip to content

Commit 61cb418

Browse files
authored
fix shared setup
1 parent 4642a50 commit 61cb418

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ runs:
6868
6969
- name: yarn install
7070
shell: bash
71-
if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion === ''
71+
if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion == ''
7272
run: yarn install --ignore-engines --frozen-lockfile --immutable
7373
working-directory: ${{ inputs.workingDirectory }}
7474

7575
- name: modern yarn install
7676
shell: bash
77-
if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion === 'modern'
77+
if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion == 'modern'
7878
run: corepack enable && yarn
7979
working-directory: ${{ inputs.workingDirectory }}
8080

0 commit comments

Comments
 (0)