We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4642a50 commit 61cb418Copy full SHA for 61cb418
setup/action.yml
@@ -68,13 +68,13 @@ runs:
68
69
- name: yarn install
70
shell: bash
71
- if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion === ''
+ if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion == ''
72
run: yarn install --ignore-engines --frozen-lockfile --immutable
73
working-directory: ${{ inputs.workingDirectory }}
74
75
- name: modern yarn install
76
77
- if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion === 'modern'
+ if: inputs.packageManager == 'yarn' && inputs.packageManagerVersion == 'modern'
78
run: corepack enable && yarn
79
80
0 commit comments