Skip to content

chore(deps): update Sample React Native to v0.71.11 #1170

chore(deps): update Sample React Native to v0.71.11

chore(deps): update Sample React Native to v0.71.11 #1170

Workflow file for this run

name: Codegen
on:
push:
branches:
- main
- release/**
pull_request:
jobs:
codegen:
runs-on: ubuntu-latest
strategy:
matrix:
platform: ["android", "ios"]
include:
- platform: android
command: |
cd sample-new-architecture/android
./gradlew generateCodegenArtifactsFromSchema
- platform: ios
command: |
cd sample-new-architecture/ios
node ../node_modules/react-native/scripts/generate-codegen-artifacts.js \
--path .. \
--outputPath codegen
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/cache@v3
id: cache
with:
path: sample-new-architecture/node_modules
key: ${{ runner.os }}-${{ github.sha }}
- name: Install Dependencies
if: steps.cache.outputs['cache-hit'] != 'true'
run: |
cd sample-new-architecture
yarn install
- name: Codegen
run: ${{ matrix.command }}