Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
470c19c
misc(sample): Change RN Sample to use native file init by default
krystofwoldrich Feb 10, 2025
21e54c8
wip: Add detox, add mocked sentry server
krystofwoldrich Feb 11, 2025
329783d
wip: partial tests
krystofwoldrich Feb 11, 2025
e5bf161
polish tests and mocked server
krystofwoldrich Feb 11, 2025
e0d5be7
NEW_PR: Remove duplicate options
krystofwoldrich Feb 11, 2025
02dfa19
split test to envelope header and capture message
krystofwoldrich Feb 11, 2025
9acb02d
detox android setup
krystofwoldrich Feb 12, 2025
02476f7
fix envelope parsing and split test to android and ios
krystofwoldrich Feb 12, 2025
d8ef6b7
run detox in CI
krystofwoldrich Feb 13, 2025
b1dff5f
fix ios path, add retention days
krystofwoldrich Feb 13, 2025
1e1b4a3
revers download archive merge into one step
krystofwoldrich Feb 13, 2025
0b1a4e9
TMP: download already built artifacts for faster development
krystofwoldrich Feb 13, 2025
9a6b0ac
add missing install JS dependencies
krystofwoldrich Feb 13, 2025
e57997f
Merge commit 'a7ffa1fdde67e7d5cc259053bb0cb688f25eea83' into kw/snaps…
krystofwoldrich Feb 13, 2025
9310436
fix artifacts not being unzipped
krystofwoldrich Feb 13, 2025
9b94228
fix ios app path
krystofwoldrich Feb 13, 2025
377d2b9
fix missing kotlin classes
krystofwoldrich Feb 13, 2025
d1bb750
extend timeout to 10 minutes
krystofwoldrich Feb 13, 2025
b862a2a
add comment
krystofwoldrich Feb 13, 2025
aef1f32
update timeout for CI
krystofwoldrich Feb 13, 2025
c99db0a
Revert "TMP: download already built artifacts for faster development"
krystofwoldrich Feb 13, 2025
803a5a2
set correct mock dsn for tests
krystofwoldrich Feb 13, 2025
858f71c
remove unnecessary timeout
krystofwoldrich Feb 13, 2025
d79a200
restore original dsn
krystofwoldrich Feb 13, 2025
68558db
fix the scripts path
krystofwoldrich Feb 13, 2025
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
fix artifacts not being unzipped
  • Loading branch information
krystofwoldrich committed Feb 13, 2025
commit 9310436101eee125883a947fe81ba9d7527ebfb6
10 changes: 10 additions & 0 deletions .github/workflows/sample-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,16 @@ jobs:
run-id: 13307975513
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Unzip iOS App Archive
if: ${{ matrix.platform == 'ios' }}
working-directory: ${{ env.REACT_NATIVE_SAMPLE_PATH }}
run: unzip ${{ env.IOS_APP_ARCHIVE_PATH }}

- name: Unzip Android APK
if: ${{ matrix.platform == 'android' }}
working-directory: ${{ env.REACT_NATIVE_SAMPLE_PATH }}
run: unzip ${{ env.ANDROID_APP_ARCHIVE_PATH }}

- name: Enable Corepack
run: |
npm install -g corepack@0.29.4
Expand Down
Loading