File tree Expand file tree Collapse file tree 5 files changed +32
-7
lines changed
Expand file tree Collapse file tree 5 files changed +32
-7
lines changed Original file line number Diff line number Diff line change 11name : Download Builds
22description : Downloading the github artifact created with the build (dist folder)
3+
4+ inputs :
5+ sha :
6+ description : ' SHA to use for the artifact name'
7+ required : false
8+ default : ${{ github.sha }}
9+
310runs :
411 using : composite
512 steps :
613 - name : Download dist folder
714 uses : actions/download-artifact@v4
815 with :
9- name : library-dist-${{ github.event.workflow_run.head_sha || github .sha }}
16+ name : library-dist-${{ inputs .sha }}
1017 path : dist
Original file line number Diff line number Diff line change 11name : Download Coverage Reports
22description : Download the github artifact created with the `test --coverage`
3+
4+ inputs :
5+ sha :
6+ description : ' SHA to use for the artifact name'
7+ required : false
8+ default : ${{ github.sha }}
9+
310runs :
411 using : composite
512 steps :
613 - name : Download coverage report
714 uses : actions/download-artifact@v4
815 with :
9- name : ngx-deploy-npm-coverage-report-${{ github.event.workflow_run.head_sha || github .sha }}
16+ name : ngx-deploy-npm-coverage-report-${{ inputs .sha }}
1017 path : coverage/packages/ngx-deploy-npm
Original file line number Diff line number Diff line change 11name : Download Lint Reports
22description : Download the github artifact with the lint report
3+
4+ inputs :
5+ sha :
6+ description : ' SHA to use for the artifact name'
7+ required : false
8+ default : ${{ github.sha }}
9+
310runs :
411 using : composite
512 steps :
613 - name : Download lint report
714 uses : actions/download-artifact@v4
815 with :
9- name : lint-report-${{ github.event.workflow_run.head_sha || github .sha }}
16+ name : lint-report-${{ inputs .sha }}
1017 path : reports
Original file line number Diff line number Diff line change 3535 - name : Check if Prettier was run
3636 run : npx pretty-quick --check
3737
38- backwards-compatibility-test :
39- name : Backwards compatibility test
40- needs : [pr-test]
41- uses : ./.github/workflows/backwards-compatibility-test.yml
38+ # backwards-compatibility-test:
39+ # name: Backwards compatibility test
40+ # needs: [pr-test]
41+ # uses: ./.github/workflows/backwards-compatibility-test.yml
Original file line number Diff line number Diff line change 1818
1919 # Download reports
2020 - uses : ./.github/actions/download-coverage-report
21+ with :
22+ sha : ${{ github.event.workflow_run.head_sha }}
2123 - uses : ./.github/actions/download-lint-report
24+ with :
25+ sha : ${{ github.event.workflow_run.head_sha }}
2226
2327 - name : SonarCloud Scan
2428 uses : sonarsource/sonarcloud-github-action@master
You can’t perform that action at this time.
0 commit comments