Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix merge reports after tests 3.15 #5361

Merged
merged 2 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/brown-pumas-judge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Now CI workflows use updated action to upload and download artifacts
5 changes: 5 additions & 0 deletions .changeset/lazy-actors-enjoy.md
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File contents are exactly the same as .changeset/brown-pumas-judge.md, probably should delete one of them?

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Now CI workflows use updated action to upload and download artifacts
4 changes: 2 additions & 2 deletions .github/actions/combineReportsFromE2E/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
shell: bash
working-directory: .github/workflows
- name: Download reports artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ./cypress/reports
- name: Create reports dir
Expand All @@ -42,7 +42,7 @@ runs:
continue-on-error: true
run: npm run qa:artifact-move-screenshots
- name: Upload reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: combined-report
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/e2e/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ runs:
if: ${{ ! cancelled() }}
run: npm run qa:move-screenshots
- name: Upload reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: report-${{ strategy.job-index }}
Expand Down
24 changes: 0 additions & 24 deletions .github/actions/testmo/testmo-threads-submit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,27 +50,3 @@ runs:
TESTMO_URL: ${{ inputs.testmoUrl }}
TESTMO_TOKEN: ${{ inputs.testmoToken }}
TESTMO_RUN_ID: ${{ inputs.testmoRunId}}
- name: Download reports artifacts
uses: actions/download-artifact@v3
with:
path: ./cypress/reports
- name: Create reports dir
continue-on-error: true
shell: bash
run: npm run qa:create-artifacts-dirs
- name: Merge report files
continue-on-error: true
shell: bash
run: npm run qa:generate-html-report
- name: Move artifacts screenshots into reports dir
continue-on-error: true
shell: bash
run: npm run qa:artifact-move-screenshots
- name: Upload reports
uses: actions/upload-artifact@v3
if: always()
with:
name: combined-report
path: ./cypress/reports
retention-days: 5
if-no-files-found: ignore
1 change: 0 additions & 1 deletion .github/workflows/run-test-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
VERSION_SLUG=$(echo "${CURRENT_BRANCH}" | sed "s/\.//")
echo "BASE_URL=https://v${VERSION_SLUG}.staging.saleor.cloud/dashboard/" >> $GITHUB_OUTPUT
echo "API_URL=https://v${VERSION_SLUG}.staging.saleor.cloud/graphql/" >> $GITHUB_OUTPUT


- uses: ./.github/actions/testmo/testmo-init
with:
Expand Down
Loading