This repository has been archived by the owner on May 10, 2024. It is now read-only.
Add Release Notes for iOS Release 1.62.1 (#8791) #10167
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: Build | |
on: | |
push: | |
branches: | |
- development | |
- beta | |
pull_request: | |
jobs: | |
test: | |
if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'CI/skip')) }} | |
name: Run tests | |
runs-on: macOS-13 | |
env: | |
# The XCode version to use. If you want to update it please refer to this document: | |
# https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners#supported-software | |
# and set proper version. | |
XCODE_VERSION: "14.3.1" | |
steps: | |
- name: Select XCode | |
# Use XCODE_VERSION env variable to set the XCode version you want. | |
run: sudo xcode-select --switch /Applications/Xcode_${{ env.XCODE_VERSION }}.app | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Update node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: npm-${{ hashFiles('package-lock.json') }} | |
restore-keys: npm- | |
- name: Run bootstrap script | |
run: ./bootstrap.sh --ci | |
- name: Run tests | |
run: | | |
set -o pipefail | |
fastlane ios test |