Bump bunit and 34 others #11
Workflow file for this run
This file contains hidden or 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: 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 |