[Snyk] Upgrade @trustwallet/wallet-core from 3.0.1 to 3.3.3 #85
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 CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install system dependencies | |
run: | | |
brew install boost ninja xcodegen xcbeautify | |
- name: Cache internal dependencies | |
id: internal_cache | |
uses: actions/cache@v1.1.2 | |
with: | |
path: build/local | |
key: ${{ runner.os }}-internal-${{ hashFiles('tools/install-dependencies') }} | |
- name: Install internal dependencies | |
run: | | |
tools/install-dependencies | |
if: steps.internal_cache.outputs.cache-hit != 'true' | |
- name: Run codegen tests | |
run: tools/codegen-test | |
- name: Run iOS tests | |
run: | | |
tools/generate-files | |
tools/ios-test | |
- name: Build sample app | |
run: | | |
tools/samples-build ios |