Tophat #11
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: iOS e2e tests | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
# Job to install dependencies | |
install-deps: | |
runs-on: ["self-hosted"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up github keys | |
run: git config core.sshCommand "ssh -i ~/.ssh/id_ed25519 -F /dev/null" | |
- name: Clean iOS app | |
run: yarn clean:ios > /dev/null 2>&1 || true | |
- name: Set up ENV vars & scripts | |
env: | |
CI_SCRIPTS: ${{ secrets.CI_SCRIPTS }} | |
run: | | |
source ~/.zshrc | |
git clone [email protected]:rainbow-me/rainbow-env.git | |
mv rainbow-env/dotenv .env && rm -rf rainbow-env | |
eval $CI_SCRIPTS | |
- name: Get Yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | |
- name: Cache Yarn dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ steps.yarn-cache-dir-path.outputs.dir }} | |
.yarn/cache | |
.yarn/install-state.gz | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
run: | | |
yarn install && yarn setup | |
- name: Upload Yarn cache | |
uses: actions/upload-artifact@v3 | |
with: | |
name: yarn-cache | |
path: | | |
.yarn/cache | |
.yarn/install-state.gz | |
# Job for linting and unit tests | |
linting-and-unit-tests: | |
runs-on: ["self-hosted"] | |
needs: install-deps | |
steps: | |
- name: Download Yarn cache | |
uses: actions/download-artifact@v3 | |
with: | |
name: yarn-cache | |
path: .yarn | |
- name: Check for frozen lockfile | |
run: ./scripts/check-lockfile.sh | |
- name: Audit CI | |
run: yarn audit-ci --config audit-ci.jsonc | |
- name: Lint | |
run: yarn lint:ci | |
- name: Unit tests | |
run: yarn test | |
# iOS build and e2e tests | |
e2e-ios: | |
runs-on: ["self-hosted"] | |
needs: install-deps | |
steps: | |
- name: Download Yarn cache | |
uses: actions/download-artifact@v3 | |
with: | |
name: yarn-cache | |
path: .yarn | |
- name: Rebuild detox cache | |
run: ./node_modules/.bin/detox clean-framework-cache && ./node_modules/.bin/detox build-framework-cache | |
- name: Version debug | |
run: | | |
npx react-native info | |
- name: Install pods | |
run: yarn install-bundle && yarn install-pods | |
- uses: irgaly/xcode-cache@v1 | |
with: | |
key: xcode-cache-deriveddata-${{ github.workflow }}-${{ github.sha }} | |
restore-keys: xcode-cache-deriveddata-${{ github.workflow }}- | |
# Detox iOS e2e tests | |
- name: Run iOS e2e tests with retry | |
run: | | |
sed -i'' -e "s/IS_TESTING=false/IS_TESTING=true/" .env && rm -f .env-e | |
yarn detox build --configuration ios.sim.release | |
./scripts/run-retry-tests.sh 3 | |