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 5cb3121 commit 605b733
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Setup
description: Setup Node.js and install dependencies
inputs:
skip_install:
required: false
default: false

runs:
using: composite
Expand Down Expand Up @@ -29,7 +33,7 @@ runs:
${{ runner.os }}-yarn-ng
- name: Install dependencies
if: ${{ !skip_install }}
if: ${{ !inputs.skip_install }}
run: |
yarn config set agora-electron-sdk-pre-built 0
yarn install --frozen-lockfile
Expand Down

0 comments on commit 605b733

Please sign in to comment.