File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,25 @@ jobs:
22
22
uses : dawidd6/action-get-tag@v1
23
23
with :
24
24
strip_v : true
25
- - name : Publish Unit Test Coverage (Jest)
25
+ - name : Publish as ${{steps.tag.outputs.tag}} Unit Test Coverage (Jest)
26
26
uses : peaceiris/actions-gh-pages@v3
27
27
with :
28
28
github_token : ${{ secrets.GITHUB_TOKEN }}
29
29
publish_dir : ./coverage
30
30
destination_dir : ./unit-test-coverage-reports/${{steps.tag.outputs.tag}}
31
- - name : Publish Mutation Test Coverage (Stryker)
31
+ - name : Publish as latest Unit Test Coverage (Jest)
32
+ uses : peaceiris/actions-gh-pages@v3
33
+ with :
34
+ github_token : ${{ secrets.GITHUB_TOKEN }}
35
+ publish_dir : ./coverage
36
+ destination_dir : ./unit-test-coverage-reports/latest
37
+ - name : Publish as latest Mutation Test Coverage (Stryker)
38
+ uses : peaceiris/actions-gh-pages@v3
39
+ with :
40
+ github_token : ${{ secrets.GITHUB_TOKEN }}
41
+ publish_dir : ./reports/mutation/html
42
+ destination_dir : ./mutation-test-coverage-reports/latest
43
+ - name : Publish as ${{steps.tag.outputs.tag}} Mutation Test Coverage (Stryker)
32
44
uses : peaceiris/actions-gh-pages@v3
33
45
with :
34
46
github_token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments