Skip to content

Commit 33107b1

Browse files
committed
fix url
1 parent 2e07f63 commit 33107b1

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/tests-backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
environment:
2222
name: staging
23-
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}/report
23+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}
2424
steps:
2525
- uses: actions/checkout@v4
2626

.github/workflows/tests-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Frontend tests
1515
environment:
1616
name: staging
17-
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}/report
17+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}
1818
steps:
1919
- uses: actions/checkout@v4
2020

.github/workflows/tests-integration.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ jobs:
156156
runs-on: ubuntu-latest
157157
name: Final coverage
158158
needs: run-tests
159+
if: always()
159160
steps:
160161
- uses: actions/checkout@v4
161162

@@ -173,6 +174,12 @@ jobs:
173174
pattern: coverages-artifacts
174175
path: ./coverages
175176

177+
# SSH Debug
178+
- name: Enable SSH
179+
uses: mxschmitt/action-tmate@v3
180+
with:
181+
detached: true
182+
176183
- name: Calculate coverage across all tests runs
177184
run: |
178185
npx nyc report -t ./coverages -r text -r text-summary

0 commit comments

Comments
 (0)