Bump Microsoft.CodeAnalysis.Workspaces.MSBuild and Microsoft.Build #553
Workflow file for this run
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: build-and-test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
DOTNET_NOLOGO: true | |
NODE_VERSION: "18" | |
jobs: | |
build-and-test: | |
name: build-and-test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
DOTNET_VERSION: ["9.0.x", "8.0.x"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- if: matrix.DOTNET_VERSION == '8.0.x' | |
run: echo "DOTNET_TFM=net8.0" >> $GITHUB_ENV | |
- if: matrix.DOTNET_VERSION == '9.0.x' | |
run: echo "DOTNET_TFM=net9.0" >> $GITHUB_ENV | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build TypedSignalR.Client.TypeScript.Attributes.csproj | |
run: dotnet build ./src/TypedSignalR.Client.TypeScript.Attributes/TypedSignalR.Client.TypeScript.Attributes.csproj --no-restore | |
- name: Build TypedSignalR.Client.TypeScript.Analyzer.csproj | |
run: dotnet build ./src/TypedSignalR.Client.TypeScript.Analyzer/TypedSignalR.Client.TypeScript.Analyzer.csproj --no-restore | |
- name: Build TypedSignalR.Client.TypeScript.csproj | |
run: dotnet build ./src/TypedSignalR.Client.TypeScript/TypedSignalR.Client.TypeScript.csproj --framework ${{ env.DOTNET_TFM }} --no-restore | |
- name: Build TypedSignalR.Client.TypeScript.Generator.csproj | |
run: dotnet build ./src/TypedSignalR.Client.TypeScript.Generator/TypedSignalR.Client.TypeScript.Generator.csproj --framework ${{ env.DOTNET_TFM }} --no-restore | |
- name: Launch test server | |
run: dotnet run --project ./tests/TypedSignalR.Client.TypeScript.Tests.Server/TypedSignalR.Client.TypeScript.Tests.Server.csproj --framework ${{ env.DOTNET_TFM }} --no-restore & | |
- name: Generate TypeScript code for test (JSON) | |
run: dotnet run --project ./src/TypedSignalR.Client.TypeScript.Generator/TypedSignalR.Client.TypeScript.Generator.csproj --framework ${{ env.DOTNET_TFM }} --no-build -- --project ./tests/TypedSignalR.Client.TypeScript.Tests.Shared/TypedSignalR.Client.TypeScript.Tests.Shared.csproj --output ./tests/TypeScriptTests/src/generated/json | |
- name: Generate TypeScript code for test (MessagePack) | |
run: dotnet run --project ./src/TypedSignalR.Client.TypeScript.Generator/TypedSignalR.Client.TypeScript.Generator.csproj --framework ${{ env.DOTNET_TFM }} --no-build -- --project ./tests/TypedSignalR.Client.TypeScript.Tests.Shared/TypedSignalR.Client.TypeScript.Tests.Shared.csproj --output ./tests/TypeScriptTests/src/generated/msgpack --serializer MessagePack --naming-style none | |
- name: Install yarn | |
run: npm install -g yarn | |
- name: Yarn install | |
run: yarn --cwd ./tests/TypeScriptTests/ install --frozen-lockfile | |
- name: Yarn Test | |
run: yarn --cwd ./tests/TypeScriptTests/ test |