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

Release version 4.21.0 #350

Merged
merged 19 commits into from
Mar 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
96e73fc
Turn off ipc log transport between render and main process
ZIMkaRU Mar 8, 2024
8cbfc2e
Suppress err modal window if pdf gen failed
ZIMkaRU Mar 8, 2024
b4ed6fe
Improve pdf gen performance for big html templates
ZIMkaRU Mar 8, 2024
0c18267
Bump up electron minor version
ZIMkaRU Mar 8, 2024
ff7588f
Merge pull request #342 from ZIMkaRU/feature/improve-print-pdf-under-…
ezewer Mar 11, 2024
b4fca2a
Use test report generators without artifact opt
ZIMkaRU Mar 12, 2024
2e207ee
Use actions/upload-artifact v4 for uploading e2e test results
ZIMkaRU Mar 12, 2024
f7aa2df
Use actions/upload-artifact v4 for uploading test results
ZIMkaRU Mar 12, 2024
4c08582
Use e2e test report generators without artifact opt
ZIMkaRU Mar 12, 2024
b27bfce
Fix test result download permission
ZIMkaRU Mar 12, 2024
e21598a
Add workaround for error 'fatal: not a git repository' caused by a ca…
ZIMkaRU Mar 12, 2024
006ea5a
Merge pull request #344 from ZIMkaRU/feature/update-gh-actions-to-use…
ezewer Mar 13, 2024
dcd4a3b
Add ability to upload dist release if repo owner is customized
ZIMkaRU Mar 13, 2024
6890b92
Pass --publish never flag into electron-builder
ZIMkaRU Mar 14, 2024
863f0d1
Merge pull request #347 from ZIMkaRU/feature/add-ability-to-upload-di…
ezewer Mar 15, 2024
e8f1040
Bump version up to v4.21.0
ZIMkaRU Mar 20, 2024
511d3ca
Add changelog for v4.21.0
ZIMkaRU Mar 20, 2024
cf55e3d
Update sub-modules
ZIMkaRU Mar 20, 2024
f58ff4c
Merge pull request #348 from ZIMkaRU/feature/release-electron-app
ezewer Mar 20, 2024
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
Prev Previous commit
Next Next commit
Use e2e test report generators without artifact opt
ZIMkaRU committed Mar 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 4c08582382c0419b81cca16db00eef7f8ffd9342
30 changes: 21 additions & 9 deletions .github/workflows/e2e-test-report.yml
Original file line number Diff line number Diff line change
@@ -18,26 +18,38 @@ jobs:
runs-on: ubuntu-22.04
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: dorny/test-reporter@v1
- name: Download Linux E2E test results
uses: actions/download-artifact@v4
with:
name: linux-e2e-test-results
path: linux-e2e-test-results
- uses: dorny/[email protected]
id: linux-e2e-test-results
with:
artifact: linux-e2e-test-results
name: Linux E2E Tests
path: e2e-test-report.xml
path: linux-e2e-test-results/e2e-test-report.xml
reporter: jest-junit
- uses: dorny/test-reporter@v1
- name: Download Win E2E test results
uses: actions/download-artifact@v4
with:
name: win-e2e-test-results
path: win-e2e-test-results
- uses: dorny/[email protected]
id: win-e2e-test-results
with:
artifact: win-e2e-test-results
name: Win E2E Tests
path: e2e-test-report.xml
path: win-e2e-test-results/e2e-test-report.xml
reporter: jest-junit
- uses: dorny/test-reporter@v1
- name: Download Mac E2E test results
uses: actions/download-artifact@v4
with:
name: mac-e2e-test-results
path: mac-e2e-test-results
- uses: dorny/[email protected]
id: mac-e2e-test-results
with:
artifact: mac-e2e-test-results
name: Mac E2E Tests
path: e2e-test-report.xml
path: mac-e2e-test-results/e2e-test-report.xml
reporter: jest-junit
- name: E2E Test Report Summary
run: |