diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0308fca..5302b450 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,6 @@ jobs: node-version-file: .nvmrc cache: 'npm' - - run: npm ci + - run: npm run boostrap - run: bash ./scripts/run_ci_tasks.sh -a - run: bash ./scripts/run_ci_tasks.sh -i diff --git a/scripts/run_ci_tasks.sh b/scripts/run_ci_tasks.sh index 8e193065..463e7718 100755 --- a/scripts/run_ci_tasks.sh +++ b/scripts/run_ci_tasks.sh @@ -37,13 +37,10 @@ done cd $REPO_PATH -yarn - # Android if $ANDROID ; then cd example/android - # Build ./gradlew app:assembleDebug @@ -60,9 +57,6 @@ if $IOS; then TARGET_SDK='iphonesimulator' TEST_DESTINATION='platform=iOS Simulator,OS=17.0.1,name=iPhone 15 Pro Max' - # Install the pods - pod install - # Use Debug configurations and a simulator SDK so the build process doesn't attempt to sign the output xcrun xcodebuild -workspace "${PROJECT_PLATFORM_PATH}/AirshipExample.xcworkspace" -derivedDataPath "${DERIVED_DATA}" -scheme "AirshipExample" -configuration Debug -sdk $TARGET_SDK -destination "${TEST_DESTINATION}"