📦 Publish SDKs (#3621) #159
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: React Native SDK test (Remote) | |
on: | |
push: | |
branches: | |
- main | |
env: | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
jobs: | |
e2e-ios: | |
name: React Native SDK iOS E2E tests (remote) | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
- name: 📥 Monorepo install | |
uses: ./.github/actions/yarn-nm-install | |
with: | |
cache-node-modules: true | |
cache-install-state: true | |
- name: Build and test | |
run: yarn workspace @e2e/react-native test:ios-remote | |
env: | |
EXPO_TOKEN: ${{ secrets.EXPO_ACCESS_TOKEN }} |