File tree 5 files changed +32
-7
lines changed
5 files changed +32
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : Download Builds
2
2
description : 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
+
3
10
runs :
4
11
using : composite
5
12
steps :
6
13
- name : Download dist folder
7
14
uses : actions/download-artifact@v4
8
15
with :
9
- name : library-dist-${{ github.event.workflow_run.head_sha || github .sha }}
16
+ name : library-dist-${{ inputs .sha }}
10
17
path : dist
Original file line number Diff line number Diff line change 1
1
name : Download Coverage Reports
2
2
description : 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
+
3
10
runs :
4
11
using : composite
5
12
steps :
6
13
- name : Download coverage report
7
14
uses : actions/download-artifact@v4
8
15
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 }}
10
17
path : coverage/packages/ngx-deploy-npm
Original file line number Diff line number Diff line change 1
1
name : Download Lint Reports
2
2
description : 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
+
3
10
runs :
4
11
using : composite
5
12
steps :
6
13
- name : Download lint report
7
14
uses : actions/download-artifact@v4
8
15
with :
9
- name : lint-report-${{ github.event.workflow_run.head_sha || github .sha }}
16
+ name : lint-report-${{ inputs .sha }}
10
17
path : reports
Original file line number Diff line number Diff line change 35
35
- name : Check if Prettier was run
36
36
run : npx pretty-quick --check
37
37
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 18
18
19
19
# Download reports
20
20
- uses : ./.github/actions/download-coverage-report
21
+ with :
22
+ sha : ${{ github.event.workflow_run.head_sha }}
21
23
- uses : ./.github/actions/download-lint-report
24
+ with :
25
+ sha : ${{ github.event.workflow_run.head_sha }}
22
26
23
27
- name : SonarCloud Scan
24
28
uses : sonarsource/sonarcloud-github-action@master
You can’t perform that action at this time.
0 commit comments