File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed
packages/create-react-native-library
templates/nitro-module/src Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 11name : Check project
22on :
3+ workflow_dispatch :
34 push :
45 branches :
56 - main
Original file line number Diff line number Diff line change 66 workflow_dispatch :
77
88permissions :
9+ actions : write
910 contents : write
1011 pull-requests : write
1112
5051 --body "Automated upgrade of template dependencies via \`scripts/upgrade-template-deps.mts\`." \
5152 --label "dependencies"
5253 fi
54+
55+ # Workflows triggered by github.token don't run on the pushed branch,
56+ # so dispatch the required validation workflows explicitly.
57+ for workflow in check-project.yml build-templates.yml; do
58+ gh workflow run "$workflow" --ref "$branch"
59+ done
5360 env :
5461 GH_TOKEN : ${{ github.token }}
Original file line number Diff line number Diff line change 1- export const FALLBACK_BOB_VERSION = '0.40.13 ' ;
2- export const FALLBACK_NITRO_MODULES_VERSION = '0.29.8 ' ;
1+ export const FALLBACK_BOB_VERSION = '0.40.18 ' ;
2+ export const FALLBACK_NITRO_MODULES_VERSION = '0.35.2 ' ;
33export const SUPPORTED_MONOREPO_CONFIG_VERSION = '0.3.3' ;
44export const SUPPORTED_REACT_NATIVE_VERSION = '0.83.0' ;
Original file line number Diff line number Diff line change 11import type { HybridObject } from 'react-native-nitro-modules' ;
22
3- export interface < % - project . name % >
4- extends HybridObject < { ios : 'swift' ; android : 'kotlin' } > {
3+ export interface < % - project . name % > extends HybridObject < {
4+ ios : 'swift' ;
5+ android : 'kotlin'
6+ } > {
57 multiply ( a : number , b : number ) : number ;
68}
You can’t perform that action at this time.
0 commit comments