Skip to content

Bump Microsoft.AspNetCore.SignalR.Protocols.MessagePack from 9.0.2 to 9.0.10 #37

Bump Microsoft.AspNetCore.SignalR.Protocols.MessagePack from 9.0.2 to 9.0.10

Bump Microsoft.AspNetCore.SignalR.Protocols.MessagePack from 9.0.2 to 9.0.10 #37

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install npm dependencies for RemoteMaster.Server
run: |
cd RemoteMaster.Server
npm install
cd ..
- name: Install .NET dependencies
run: dotnet restore --ignore-failed-sources --no-cache ./RemoteMaster.sln
- name: Build
run: dotnet build --configuration Release --no-restore ./RemoteMaster.sln
- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal ./RemoteMaster.sln