Bump @babel/traverse from 7.21.3 to 7.23.2 in /WebApp/khaneliman #211
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: .NET WebApp Build | |
on: | |
push: | |
branches: [ develop, master ] | |
paths: | |
- 'WebApp/**/*' | |
pull_request: | |
branches: [ develop, master ] | |
paths: | |
- 'WebApp/**/*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore DotNet Dependencies | |
run: dotnet restore WebApp/ | |
- name: Build WebApp | |
run: dotnet build WebApp/ --no-restore | |
- name: Test Dotnet | |
run: dotnet test WebApp/ --no-build --verbosity normal | |
- name: Test Angular | |
run: npm run test-coverage --prefix WebApp/khaneliman/ |