Skip to content

refactor: Split cmake and podspec for worklets (#6334) #2257

refactor: Split cmake and podspec for worklets (#6334)

refactor: Split cmake and podspec for worklets (#6334) #2257

Workflow file for this run

name: Validate C++
on:
push:
branches:
- main
paths:
- ".github/workflows/validate-cpp.yml"
- "packages/react-native-reanimated/scripts/cpplint.sh"
- "packages/react-native-reanimated/Common/cpp/**"
- "packages/react-native-reanimated/apple/native/**"
- "packages/react-native-reanimated/android/src/main/cpp/**"
pull_request:
paths:
- ".github/workflows/validate-cpp.yml"
- "packages/react-native-reanimated/scripts/cpplint.sh"
- "packages/react-native-reanimated/Common/cpp/**"
- "packages/react-native-reanimated/apple/native/**"
- "packages/react-native-reanimated/android/src/main/cpp/**"
merge_group:
branches:
- main
jobs:
lint:
if: github.repository == 'software-mansion/react-native-reanimated'
name: cpplint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install cpplint
- name: Run cpplint
working-directory: packages/react-native-reanimated
run: |
scripts/cpplint.sh
- name: Disallow DEBUG macros
run: |
! egrep -r '(#if DEBUG|#ifdef DEBUG)' packages/react-native-reanimated/Common/cpp/ packages/react-native-reanimated/apple/native/ packages/react-native-reanimated/android/src/main/cpp/