updating github actions #20
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
name: Main | |
on: push | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # required to setup CSC | |
jobs: | |
main: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
#os: [macos-latest, ubuntu-latest, windows-2019] | |
os: [windows-2019] | |
fail-fast: false | |
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 CSC for Windows | |
uses: yoavain/Setup-CSC@v5 | |
- 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 # Mono interferes with Core CLR gyp compile | |
run: | | |
sudo rm -rf /Library/Frameworks/Mono.framework | |
sudo pkgutil --forget com.xamarin.mono-MDK.pkg | |
sudo rm /etc/paths.d/mono-commands | |
- name: npm install | |
run: npm i | |
- name: Install Annotation Support | |
run: npm install mocha-github-actions-reporter | |
- if: runner.os == 'Windows' | |
name: Run .NET 4.x tests | |
run: npm test | |
- if: runner.os == 'Windows' | |
name: Create .NET 4.x tests report | |
run: node tools/coverage.js | |
- name: "Run .net core tests" | |
run: npm test | |
env: | |
EDGE_USE_CORECLR: 1 | |
- name: "Run .net core tests report" | |
run: node tools/coverage.js | |
env: | |
EDGE_USE_CORECLR: 1 | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: Mocha junit Tests # Name of the check run which will be created | |
path: test-results.xml # Path to test results | |
reporter: jest-junit # Format of test results | |