wallet: rm legacy eth_sign #5757
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
# This is a basic workflow to help you get started with Actions | |
name: iOS e2e tests | |
# Controls when the workflow will run | |
on: [pull_request, workflow_dispatch] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "ios-e2e" | |
ios-e2e: | |
# The type of runner that the job will run on | |
runs-on: ["self-hosted"] | |
# Cancel current builds if there's a newer commit on the same branch | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Set up github keys | |
run: git config core.sshCommand "ssh -i ~/.ssh/id_ed25519 -F /dev/null" | |
- name: Set up ENV vars & scripts | |
run: | | |
# read local env vars | |
source ~/.bashrc | |
# fetch env vars | |
git clone [email protected]:rainbow-me/rainbow-env.git | |
# unpack dotenv | |
mv rainbow-env/dotenv .env && rm -rf rainbow-env | |
# run CI scripts | |
eval $CI_SCRIPTS | |
# tweak dotenv for e2e | |
sed -i''-e "s/\IS_TESTING=false/IS_TESTING=true/" .env && rm -f .env-e | |
- name: Install deps via Yarn | |
run: yarn setup-ci | |
- name: Check for frozen lockfile | |
run: yarn check-lockfile | |
- name: Audit CI | |
run: yarn audit-ci --config audit-ci.jsonc | |
- name: Lint | |
run: yarn lint:ci | |
- name: Unit tests | |
run: yarn test | |
- name: Install Pods | |
run: cd ios && bundle install && pod install --repo-update && cd .. | |
- name: Rebuild detox cache | |
run: ./node_modules/.bin/detox clean-framework-cache && ./node_modules/.bin/detox build-framework-cache | |
- name: Build the app in Release mode | |
run: ./node_modules/.bin/detox build --configuration ios.sim.release | |
- name: Run iOS e2e tests | |
run: ./node_modules/.bin/detox test -R 5 --configuration ios.sim.release --forceExit --bail |