File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 6
6
- name : Download dist folder
7
7
uses : actions/download-artifact@v4
8
8
with :
9
- name : library-dist-${{ github.sha }}
9
+ name : library-dist-${{ github.event.workflow_run.head_sha || github. sha }}
10
10
path : dist
Original file line number Diff line number Diff line change 6
6
- name : Download coverage report
7
7
uses : actions/download-artifact@v4
8
8
with :
9
- name : ngx-deploy-npm-coverage-report-${{ github.sha }}
9
+ name : ngx-deploy-npm-coverage-report-${{ github.event.workflow_run.head_sha || github. sha }}
10
10
path : coverage/packages/ngx-deploy-npm
Original file line number Diff line number Diff line change 6
6
- name : Download lint report
7
7
uses : actions/download-artifact@v4
8
8
with :
9
- name : lint-report-${{ github.sha }}
9
+ name : lint-report-${{ github.event.workflow_run.head_sha || github. sha }}
10
10
path : reports
Original file line number Diff line number Diff line change 10
10
pr-test :
11
11
uses : ./.github/workflows/basic-test.yml
12
12
13
- pr-e2e-test :
14
- uses : ./.github/workflows/e2e-test.yml
13
+ # pr-e2e-test:
14
+ # uses: ./.github/workflows/e2e-test.yml
15
15
16
16
check-commit-lint :
17
17
name : Check commit message follows guidelines
36
36
run : npx pretty-quick --check
37
37
38
38
backwards-compatibility-test :
39
+ name : Backwards compatibility test
39
40
needs : [pr-test]
40
41
uses : ./.github/workflows/backwards-compatibility-test.yml
You can’t perform that action at this time.
0 commit comments