Skip to content

Commit

Permalink
🐛 Fix: fix yml bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuingsmile committed Mar 9, 2023
1 parent ab03867 commit 5657ed3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,21 @@ jobs:
# step3: yarn
- name: Yarn install macos
if: matrix.os = 'macos-11'
if: matrix.os == 'macos-11'
run: |
yarn
yarn global add xvfb-maybe
npm rebuild --platform=darwin --arch=arm64 sharp
- name: Yarn install windows
if: matrix.os = 'windows-latest'
if: matrix.os == 'windows-latest'
run: |
yarn
yarn global add xvfb-maybe
npm rebuild --platform=win32 --arch=ia32 sharp
- name: Yarn install linux
if: matrix.os = 'ubuntu-latest'
if: matrix.os == 'ubuntu-latest'
run: |
yarn
yarn global add xvfb-maybe
Expand Down

0 comments on commit 5657ed3

Please sign in to comment.