We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d6d2c commit 2ccadb5Copy full SHA for 2ccadb5
.github/workflows/codegen.yml
@@ -12,12 +12,18 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
- platform: ["android"] # "ios" will be added after codegen is fixed
+ platform: ["android", "ios"]
16
include:
17
- platform: android
18
command: |
19
cd sample-new-architecture/android
20
./gradlew generateCodegenArtifactsFromSchema
21
+ - platform: ios
22
+ command: |
23
+ cd sample-new-architecture/ios
24
+ node ../node_modules/react-native/scripts/generate-codegen-artifacts.js \
25
+ --path .. \
26
+ --outputPath codegen
27
steps:
28
- uses: actions/checkout@v3
29
- uses: actions/setup-node@v3
0 commit comments