Skip to content

Commit

Permalink
att .github
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreSequinel committed Nov 6, 2024
1 parent ee1e6e5 commit 2b5dc2b
Showing 1 changed file with 14 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
branches: [ "main" ]

jobs:

build:
runs-on: windows-latest

Expand All @@ -22,19 +21,25 @@ jobs:
with:
node-version: 20.x

# Install the .NET Core workload
# 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: https://github.com/microsoft/setup-msbuild
# Add MSBuild to the PATH
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2

# Execute all unit tests in the solution
- name: run install
run: npm install, run build

- name: run build
run: npm run build
# Run npm install and build
- name: Install Dependencies
run: npm install

- name: Build Project
run: npm run build

# Run Tests
- name: Run Tests
run: dotnet test ${{ env.Test_Project_Path }}
env:
Test_Project_Path: C:\Projetos\PrimeiroProjetoSelenium\ProjetoRepositorio\ProjetoRepositorio.csproj

0 comments on commit 2b5dc2b

Please sign in to comment.