@@ -20,61 +20,62 @@ jobs:
2020 cancel-in-progress : true
2121 uses : ./.github/workflows/.build.yml
2222
23- repo-analysis :
24- name : Repository analysis
25- concurrency :
26- group : ${{ github.workflow }}-${{ github.ref }}-analysis
27- cancel-in-progress : true
28- uses : ./.github/workflows/.analysis.yml
29- secrets : inherit
30-
31- analysis-results :
32- name : Analysis Results
33- needs : [repo-analysis]
34- if : always()
35- runs-on : ubuntu-24.04
36- steps :
37- - if : contains(needs.*.result, 'failure')
38- run : echo "At least one job has failed." && exit 1
39- - run : echo "Success!"
40-
41- test-admin :
42- name : Run tests for admin app
43- needs : build-containers
44- uses : ./.github/workflows/.tests.yml
45- with :
46- app : admin
47- secrets : inherit
48-
49- test-public :
50- name : Run tests for public app
51- needs : build-containers
52- uses : ./.github/workflows/.tests.yml
53- with :
54- app : public
55- secrets : inherit
56-
57- test-shared :
58- name : Run shared tests
59- needs : build-containers
60- uses : ./.github/workflows/.shared.yml
61-
23+ # repo-analysis:
24+ # name: Repository analysis
25+ # concurrency:
26+ # group: ${{ github.workflow }}-${{ github.ref }}-analysis
27+ # cancel-in-progress: true
28+ # uses: ./.github/workflows/.analysis.yml
29+ # secrets: inherit
30+ #
31+ # analysis-results:
32+ # name: Analysis Results
33+ # needs: [repo-analysis]
34+ # if: always()
35+ # runs-on: ubuntu-24.04
36+ # steps:
37+ # - if: contains(needs.*.result, 'failure')
38+ # run: echo "At least one job has failed." && exit 1
39+ # - run: echo "Success!"
40+ #
41+ # test-admin:
42+ # name: Run tests for admin app
43+ # needs: build-containers
44+ # uses: ./.github/workflows/.tests.yml
45+ # with:
46+ # app: admin
47+ # secrets: inherit
48+ #
49+ # test-public:
50+ # name: Run tests for public app
51+ # needs: build-containers
52+ # uses: ./.github/workflows/.tests.yml
53+ # with:
54+ # app: public
55+ # secrets: inherit
56+ #
57+ # test-shared:
58+ # name: Run shared tests
59+ # needs: build-containers
60+ # uses: ./.github/workflows/.shared.yml
61+ #
6262 review-and-deploy-admin :
63- if : github.ref_name == 'main' || github.head_ref == 'main'
63+ # if: github.ref_name == 'main' || github.head_ref == 'main'
6464 name : Review and deploy Admin app
65- needs : [test-admin, test-public, test-shared]
65+ needs : build-containers
66+ # needs: [test-admin, test-public, test-shared]
6667 uses : ./.github/workflows/.review-and-deploy.yml
6768 with :
6869 app : admin
6970 tag : ${{ github.sha }}
7071 secrets : inherit
7172
72- review-and-deploy-public :
73- if : github.ref_name == 'main' || github.head_ref == 'main'
74- name : Review and deploy Public app
75- needs : [test-admin, test-public, test-shared]
76- uses : ./.github/workflows/.review-and-deploy.yml
77- with :
78- app : public
79- tag : ${{ github.sha }}
80- secrets : inherit
73+ # review-and-deploy-public:
74+ # if: github.ref_name == 'main' || github.head_ref == 'main'
75+ # name: Review and deploy Public app
76+ # needs: [test-admin, test-public, test-shared]
77+ # uses: ./.github/workflows/.review-and-deploy.yml
78+ # with:
79+ # app: public
80+ # tag: ${{ github.sha }}
81+ # secrets: inherit
0 commit comments