Skip to content

Commit

Permalink
[Issue-1753] Optimize build time
Browse files Browse the repository at this point in the history
  • Loading branch information
dominhquang committed Sep 16, 2024
1 parent b060a4a commit b25ebe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Use Node.js 18
uses: actions/setup-node@v4
if: runner.name != 'Mac-x86' || runner.name != 'Dos-Mac-mini'
if: ${{ runner.name }} != 'Mac-x86' || ${{ runner.name }} != 'Dos-Mac-mini'
with:
node-version: 18
cache: 'yarn'
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
fi
- name: Use Node.js 18
if: runner.name != 'Mac-x86' || runner.name != 'Dos-Mac-mini'
if: ${{ runner.name }} != 'Mac-x86' || ${{ runner.name }} != 'Dos-Mac-mini'
uses: actions/setup-node@v4
with:
node-version: 18
Expand Down

0 comments on commit b25ebe6

Please sign in to comment.