Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Nov 8, 2023
1 parent c4d960b commit f79f57e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ runs:
- name: Install packages/react dependencies
run: yarn install --cwd packages/react
shell: bash
if: ${{ inputs.packages-react == true }}
# Note: Checking for both boolean and string true values due to referenced bug:
# https://github.com/actions/runner/issues/2238
if: ${{ inputs.packages-react == true || inputs.packages-react == 'true' }}
- name: Install packages/styles dependencies
run: yarn install --cwd packages/styles
shell: bash
if: ${{ inputs.packages-styles == true }}
if: ${{ inputs.packages-styles == true || inputs.packages-styles == 'true' }}

0 comments on commit f79f57e

Please sign in to comment.