Skip to content

Commit

Permalink
ci: publish fixes, detox timeout increase
Browse files Browse the repository at this point in the history
  • Loading branch information
oscb committed Dec 12, 2023
1 parent 6adf832 commit 1e128ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
needs: cancel_previous
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
# Workaround for corepack enable in node
# Source: (https://github.com/actions/setup-node/issues/899#issuecomment-1828798029)
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down Expand Up @@ -50,9 +50,9 @@ jobs:
HOMEBREW_NO_AUTO_UPDATE=1 brew tap wix/brew >/dev/null
HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils >/dev/null
- uses: actions/checkout@v2
# Workaround for corepack enable in node
# Source: (https://github.com/actions/setup-node/issues/899#issuecomment-1828798029)
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: 20
cache: 'yarn'

- name: Config and Build
Expand Down
4 changes: 2 additions & 2 deletions examples/E2E/.detoxrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
forceExit: process.env.CI ? true : undefined,
},
jest: {
setupTimeout: 120000
setupTimeout: 240000
},
detached: !!process.env.CI,
retries: 3
Expand Down Expand Up @@ -63,7 +63,7 @@ module.exports = {
emulator: {
type: 'android.emulator',
device: {
avdName: 'Pixel_3a_API_32'
avdName: process.env.CI ? 'Pixel_API_21_AOSP': 'Pixel_3a_API_32'
}
}
},
Expand Down

0 comments on commit 1e128ba

Please sign in to comment.