Bump MSTest.TestAdapter from 3.0.4 to 3.2.0 (#13) #46
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: Code PR Check | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
pull_request: | |
branches: ["main"] | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- '.github/workflows/code-pr-check.yml' | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
env: | |
DOTNET_VERSION: 8 | |
SOLUTION_NAME: 'Dfe.EarlyYearsQualification.sln' | |
jobs: | |
build-app: | |
name: Build, check and run tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Build web app | |
uses: ./.github/actions/build-dotnet-app | |
with: | |
dotnet_version: ${{ env.DOTNET_VERSION }} | |
solution_filename: ${{ env.SOLUTION_NAME }} | |
- name: Run CodeQL and dependency checks | |
uses: ./.github/actions/codeql-and-dependency-checks | |
- name: Run unit tests | |
uses: ./.github/actions/run-unit-tests | |
with: | |
solution_filename: ${{ env.SOLUTION_NAME }} | |
- name: Run e2e tests | |
uses: ./.github/actions/run-e2e-tests | |
with: | |
url: "<THIS CAN BE UPDATED WITH THE URL OF THE PR TEST SITE AT A LATER DATE>" |