-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,17 +13,23 @@ jobs: | |
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup NodeJS | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20.x' | ||
|
||
- if: runner.os == 'Windows' | ||
name: Setup MSBuild for Windows | ||
uses: microsoft/[email protected] | ||
|
||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '8.0.x' # SDK Version to use; x will use the latest version of the 8.0 channel | ||
|
||
- if: runner.os == 'macOS' | ||
name: Remove Mono from macOS | ||
name: Remove Mono from macOS # Mono interferes with Core CLR gyp compile | ||
run: | | ||
sudo rm -rf /Library/Frameworks/Mono.framework | ||
sudo pkgutil --forget com.xamarin.mono-MDK.pkg | ||
|