Skip to content

Commit

Permalink
Put dotnet step in ci.yml before js
Browse files Browse the repository at this point in the history
  • Loading branch information
amidgol committed Apr 15, 2021
1 parent ac313b7 commit 752fc26
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/ci.yml
Expand Up @@ -19,6 +19,16 @@ jobs:
# Checkout code
- uses: actions/checkout@v2

# Build/test for .Net
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Build with .Net
run: dotnet build --configuration Release
- name: Tests for .Net
run: dotnet test

# Build/test for JavaScript
- name: Use Node.js
uses: actions/setup-node@v1
Expand All @@ -37,8 +47,6 @@ jobs:
- run: npm run test
working-directory: ./client-js/integration-tests



# Build/test for JDK
- name: Setup JDK 8
uses: actions/setup-java@v1
Expand All @@ -55,16 +63,6 @@ jobs:
env:
CI_env: GithubAction

# Build/test for .Net
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Build with .Net
run: dotnet build --configuration Release
- name: Tests for .Net
run: dotnet test


# E2E for JS. Must be run AFTER the JS and Core builds
- name: E2E for JavaScript
Expand Down

0 comments on commit 752fc26

Please sign in to comment.