-
-
Notifications
You must be signed in to change notification settings - Fork 103
71 lines (57 loc) · 2 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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]
node: [21.x, 20.x, 18.x, 16.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node }}'
- if: runner.os == 'Windows'
name: Setup CSC for Windows
uses: yoavain/Setup-CSC@v5
- name: Setup dotnet
uses: actions/setup-dotnet@v4
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
- if: runner.os == 'macOS' && matrix.node == '16.x'
name: Add missing packages for macOS NodeJs 16 # Mono interferes with Core CLR gyp compile
run: |
pip install setuptools
- name: npm install
run: npm i
- 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: "Create .net core tests report"
run: node tools/coverage.js
env:
EDGE_USE_CORECLR: 1
- name: Test Report
uses: dorny/test-reporter@v1
with:
name: Test results (${{ matrix.os }}, ${{ matrix.node }}) # Name of the check run which will be created
path: test-results.xml # Path to test results
reporter: jest-junit # Format of test results