delete npm testes #4
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: .NET Core Desktop | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Installing node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
# Install the .NET Core SDK | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
# Add MSBuild to the PATH | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v2 | |
# Run Tests | |
- name: Run Tests | |
run: dotnet test ./ProjetoRepositorio/ProjetoRepositorio.csproj |