-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (38 loc) · 1.35 KB
/
ci-cd-pull-request.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
name: CI/CD Pull Request
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
jobs:
generate-git-short-sha:
name: Generate git short sha
uses: ./.github/workflows/workflow-generate-git-short-sha.yml
check-for-changes:
name: Check for changes
uses: ./.github/workflows/workflow-check-for-changes.yml
build-and-test:
uses: ./.github/workflows/workflow-build-and-test.yml
with:
environment: test
playwright-test:
uses: ./.github/workflows/workflow-playwright-test.yml
dry-run-deploy-infra:
uses: ./.github/workflows/workflow-deploy-infrastructure.yml
needs:
[
generate-git-short-sha,
check-for-changes
]
if: ${{ needs.check-for-changes.outputs.hasInfrastructureChanges == 'true' }}
secrets:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
AZURE_SOURCE_KEY_VAULT_NAME: ${{ secrets.AZURE_SOURCE_KEY_VAULT_NAME }}
AZURE_SOURCE_KEY_VAULT_SUBSCRIPTION_ID: ${{ secrets.AZURE_SOURCE_KEY_VAULT_SUBSCRIPTION_ID }}
AZURE_SOURCE_KEY_VAULT_RESOURCE_GROUP: ${{ secrets.AZURE_SOURCE_KEY_VAULT_RESOURCE_GROUP }}
with:
environment: test
region: norwayeast
dryRun: true
version: ${{ github.sha }}