Discard changes to e2e/appStarts.e2e.ts #746
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Expo Dev Server Tests | |
on: [push] | |
jobs: | |
build: | |
name: Expo Dev Server Tests | |
runs-on: macos-13 | |
timeout-minutes: 45 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 'latest' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install newer Bash and coreutils (for timeout) | |
run: | | |
brew install bash coreutils | |
- name: Cache AVD snapshot | |
uses: actions/cache@v4 | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd-30-aosp-atd | |
- name: Create AVD and generate snapshot for caching | |
if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
# Use the slimmer aosp_atd images for working | |
# around "System UI isn't responding" ANR | |
# (Application Not Responding) error | |
# | |
# https://android-developers.googleblog.com/2021/10/whats-new-in-scalable-automated-testing.html#:~:text=Slimmer%20Emulator%20System%20Images | |
# https://github.com/ReactiveCircus/android-emulator-runner/issues/129 | |
# https://github.com/upleveled/hotline-bling-codealong/pull/26#issuecomment-1094659722 | |
target: aosp_atd | |
api-level: 30 | |
arch: x86 | |
channel: canary | |
profile: pixel | |
avd-name: Pixel_3a_API_30_AOSP | |
force-avd-creation: false | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: false | |
script: echo "Generated AVD snapshot for caching" | |
- name: Start emulator and run Expo dev server | |
uses: reactivecircus/android-emulator-runner@v2 | |
timeout-minutes: 20 | |
with: | |
target: aosp_atd | |
api-level: 30 | |
arch: x86 | |
channel: canary | |
profile: pixel | |
avd-name: Pixel_3a_API_30_AOSP | |
script: ./scripts/test-expo-dev-server.sh |