File tree Expand file tree Collapse file tree
packages/react-native/ReactCommon/react/renderer/debug Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Validate C++ API Snapshots
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+ paths :
7+ - " packages/react-native/ReactCommon/**"
8+ - " packages/react-native/ReactAndroid/**"
9+ - " packages/react-native/React/**"
10+ - " packages/react-native/ReactApple/**"
11+ - " packages/react-native/Libraries/**"
12+ - " scripts/cxx-api/**"
13+ push :
14+ branches :
15+ - main
16+ - " *-stable"
17+ paths :
18+ - " packages/react-native/ReactCommon/**"
19+ - " packages/react-native/ReactAndroid/**"
20+ - " packages/react-native/React/**"
21+ - " packages/react-native/ReactApple/**"
22+ - " packages/react-native/Libraries/**"
23+ - " scripts/cxx-api/**"
24+
25+ jobs :
26+ validate_cxx_api_snapshots :
27+ runs-on : ubuntu-latest
28+ if : github.repository == 'facebook/react-native'
29+ steps :
30+ - name : Checkout
31+ uses : actions/checkout@v6
32+ - name : Setup node.js
33+ uses : ./.github/actions/setup-node
34+ - name : Run yarn
35+ uses : ./.github/actions/yarn-install
36+ - name : Install Doxygen
37+ shell : bash
38+ run : sudo apt-get update && sudo apt-get install -y doxygen
39+ - name : Set up Python
40+ uses : actions/setup-python@v5
41+ with :
42+ python-version : " 3.12"
43+ - name : Install Python dependencies
44+ shell : bash
45+ run : pip install doxmlparser natsort pyyaml
46+ - name : Validate C++ API snapshots
47+ shell : bash
48+ run : yarn cxx-api-validate
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ namespace facebook::react {
2020
2121#if RN_DEBUG_STRING_CONVERTIBLE
2222
23- class DebugStringConvertible ;
23+ // class DebugStringConvertible;
2424
2525using SharedDebugStringConvertible = std::shared_ptr<const DebugStringConvertible>;
2626using SharedDebugStringConvertibleList = std::vector<SharedDebugStringConvertible>;
You can’t perform that action at this time.
0 commit comments