Use correct import path for ReactNativeVersion.h #1869
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint C++ | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/lint-cpp.yml' | |
| - '**/*.h' | |
| - '**/*.hpp' | |
| - '**/*.cpp' | |
| - '**/*.c' | |
| - '**/*.mm' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/lint-cpp.yml' | |
| - '**/*.h' | |
| - '**/*.hpp' | |
| - '**/*.cpp' | |
| - '**/*.c' | |
| - '**/*.mm' | |
| jobs: | |
| lint: | |
| name: Format C++ | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Run clang-format | |
| run: bun run lint-cpp | |
| - name: Verify no files have changed after format | |
| run: git diff --exit-code HEAD -- . ':(exclude)bun.lock' | |