Bump govuk-frontend from 4.0.1 to 5.6.0 in /ntbs-service #1922
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: run tests | |
on: | |
push | |
jobs: | |
test-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup .NET 6.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
# Run all the tests | |
- name: Run unit tests | |
working-directory: ntbs-service-unit-tests | |
run: dotnet test | |
- name: Run unit tests (EF auditer) | |
working-directory: EFAuditer-tests | |
run: dotnet test | |
- name: Run integration tests | |
working-directory: ntbs-integration-tests | |
run: export ASPNETCORE_hostBuilder__reloadConfigOnChange=false; dotnet test |