Skip to content

Commit

Permalink
chore: optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe committed Jul 19, 2024
1 parent 3ae6e00 commit a63e85b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Setup Node.js and install dependencies
inputs:
skip_install:
required: false
default: false
default: 'false'

runs:
using: composite
Expand All @@ -23,7 +23,7 @@ runs:
python-version: 3.11.5

- name: Install dependencies
if: ${{ inputs.skip_install == false }}
if: ${{ inputs.skip_install == 'false' }}
run: |
yarn config set agora-electron-sdk-pre-built 0
yarn install --frozen-lockfile
Expand Down

0 comments on commit a63e85b

Please sign in to comment.