forked from sebastienros/jint
-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (37 loc) · 1018 Bytes
/
tests.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
name: tests
on:
push:
branches:
- dev
pull_request:
branches:
- dev
env:
DOTNET_VERSION: "5.0"
jobs:
tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Jint.Tests
if: always()
run: dotnet test --configuration Release --no-restore
working-directory: ./Jint.Tests
- name: Jint.Tests.CommonScripts
if: always()
run: dotnet test --configuration Release --no-restore
working-directory: ./Jint.Tests.CommonScripts
- name: Jint.Tests.Ecma
if: always()
run: dotnet test --configuration Release --no-restore
working-directory: ./Jint.Tests.Ecma
- name: Jint.Tests.Test262
if: always()
run: dotnet test --configuration Release --no-restore
working-directory: ./Jint.Tests.Test262