-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.28 KB
/
code-pr-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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:
dotnet_version: ${{ env.DOTNET_VERSION }}
solution_name: ${{ env.SOLUTION_NAME }}