Update actions/cache and actions/setup-node to v4 #75
Workflow file for this run
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: Demo Expo App | |
on: [pull_request] | |
jobs: | |
run-visual-regression-ios: | |
runs-on: macos-11 | |
# Disable the Expo example test for now, as I'm getting a XCode 65 error which I havent been able to resolve yet. | |
# The tests do run locally, so I'm not sure what the issue is. | |
if: ${{ false }} | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- uses: actions/checkout@v4 | |
- name: Get Runner Information | |
run: /usr/bin/xcodebuild -version | |
- name: Install Dependencies (Library) | |
run: yarn install --frozen-lockfile | |
working-directory: ./ | |
- name: Compile the library | |
run: yarn build | |
working-directory: ./ | |
- name: Install Dependencies (Example Expo App) | |
run: yarn install --frozen-lockfile | |
working-directory: ./ExpoExample | |
- name: Install CocoaPods Gem | |
run: gem install cocoapods -v 1.11.0 | |
- uses: actions/cache@v4 | |
with: | |
path: ./example/ios/Pods | |
key: ${{ runner.os }}-expo-pods-${{ hashFiles('**/Podfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-expo-pods- | |
- name: Expo prebuild | |
run: yarn expo prebuild --platform ios | |
working-directory: ./ExpoExample | |
- uses: futureware-tech/simulator-action@v1 | |
with: | |
model: 'iPhone 13 Pro' | |
os_version: '>=15.0' | |
- name: Run Owl Build | |
run: yarn owl:build:ios | |
working-directory: ./ExpoExample | |
- name: Run Owl Test | |
run: yarn owl:test:ios | |
working-directory: ./ExpoExample | |
- name: Store screenshots and report as artifacts | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: owl-results | |
path: ExpoExample/.owl | |
run-visual-regression-android: | |
runs-on: macos-11 | |
if: ${{ false }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install Dependencies (Library) | |
run: yarn install --frozen-lockfile | |
working-directory: ./ | |
- name: Compile the library | |
run: yarn build | |
working-directory: ./ | |
- name: Install Dependencies (Example Expo App) | |
run: yarn install --frozen-lockfile | |
working-directory: ./ExpoExample | |
- name: Expo prebuild | |
run: yarn expo prebuild --platform android | |
working-directory: ./ExpoExample | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-expo-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-expo-gradle- | |
- name: SKDs - download required images | |
run: $ANDROID_HOME/tools/bin/sdkmanager "system-images;android-30;default;x86_64" | |
- name: SDKs - accept licenses | |
run: y | $ANDROID_HOME/tools/bin/sdkmanager --licenses | |
- name: Emulator - Create | |
run: $ANDROID_HOME/tools/bin/avdmanager create avd -n Pixel_API_30 --device 'Nexus 5X' --package "system-images;android-30;default;x86_64" --sdcard 512M | |
- name: Emulator - Boot | |
run: $ANDROID_HOME/emulator/emulator -memory 4096 -avd Pixel_API_30 -wipe-data -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim & | |
- name: ADB Wait For Device | |
run: adb wait-for-any-device | |
timeout-minutes: 3 | |
- name: Run Owl Build | |
run: yarn owl:build:android | |
working-directory: ./ExpoExample | |
- name: Run Owl Test | |
run: yarn owl:test:android | |
working-directory: ./ExpoExample | |
- name: Store screenshots as artifacts | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: owl-screenshots | |
path: ExpoExample/.owl |