Skip to content

feat(metro): New simplified Sentry Metro Serializer export #2413

feat(metro): New simplified Sentry Metro Serializer export

feat(metro): New simplified Sentry Metro Serializer export #2413

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 samples/react-native/android
./gradlew generateCodegenArtifactsFromSchema
- platform: ios
command: |
cd samples/react-native/ios
node ../node_modules/react-native/scripts/generate-codegen-artifacts.js \
--path .. \
--outputPath codegen
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- uses: actions/cache@v3
id: cache
with:
path: samples/react-native/node_modules
key: ${{ runner.os }}-${{ github.sha }}
- name: Install Dependencies
if: steps.cache.outputs['cache-hit'] != 'true'
run: |
cd samples/react-native
yarn install
- name: Codegen
run: ${{ matrix.command }}