-
Notifications
You must be signed in to change notification settings - Fork 5
50 lines (42 loc) · 1.31 KB
/
default.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
name: Default push workflow
on:
pull_request:
push:
branches:
- "main"
jobs:
init:
uses: ./.github/workflows/00-init.yml
scan-secrets:
if: github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui'
uses: ./.github/workflows/00-scan-secrets.yml
lint:
uses: ./.github/workflows/01-lint.yml
needs: [init]
test:
uses: ./.github/workflows/01-test.yml
needs: [init]
build:
uses: ./.github/workflows/01-build.yml
needs: [init]
checks-done:
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: 🎉 Checks done
run: |
resultBuild="${{ needs.build.result }}"
resultTest="${{ needs.test.result }}"
resultLint="${{ needs.lint.result }}"
if [[ $resultBuild == "success" && $resultTest == "success" && $resultLint == "success" ]]; then
echo "🎉 All tests & build were successful."
exit 0
else
echo "Some tests were failing."
exit 1
fi
needs: [build, test, lint]
deploy:
uses: ./.github/workflows/02-deploy-gh-pages.yml
if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui') }}
needs: [lint, test, build]